├── Untitled.txt ├── web ├── src │ ├── app │ │ ├── css │ │ │ ├── iconfont │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ ├── iconfont.eot │ │ │ │ └── iconfont.css │ │ │ ├── articleList.less │ │ │ ├── main.less │ │ │ ├── login.less │ │ │ ├── base.less │ │ │ ├── articleCategory.less │ │ │ ├── markdown.less │ │ │ ├── github-gist.css │ │ │ ├── newArticle.less │ │ │ ├── laboratory.less │ │ │ ├── about.less │ │ │ └── articleDetail.less │ │ ├── .DS_Store │ │ ├── images │ │ │ ├── vue.jpg │ │ │ ├── line.png │ │ │ ├── react.png │ │ │ ├── weex.png │ │ │ ├── 3fuyu_bg.jpg │ │ │ ├── add_pic.png │ │ │ ├── angular.jpg │ │ │ ├── electron.png │ │ │ ├── gomoku.jpg │ │ │ ├── gomoku.png │ │ │ ├── mongodb.jpg │ │ │ ├── nodejs.jpg │ │ │ ├── default_xz.png │ │ │ ├── delete_btn.png │ │ │ ├── line_green.png │ │ │ ├── logo_small.jpg │ │ │ ├── select_photo.jpg │ │ │ ├── select_photo.png │ │ │ └── banner_small_two.jpg │ │ ├── js │ │ │ ├── .DS_Store │ │ │ ├── components │ │ │ │ ├── .DS_Store │ │ │ │ ├── lib │ │ │ │ │ ├── Loading.js │ │ │ │ │ └── upload.js │ │ │ │ ├── management │ │ │ │ │ ├── MarkdownElement.js │ │ │ │ │ ├── FullWidthSection.js │ │ │ │ │ ├── Login.js │ │ │ │ │ ├── ArticleList.js │ │ │ │ │ ├── AppNavDrawer.js │ │ │ │ │ ├── ArticleCategory.js │ │ │ │ │ └── NewArticle.js │ │ │ │ └── index │ │ │ │ │ ├── Laboratory.js │ │ │ │ │ ├── ArticleDetail.js │ │ │ │ │ ├── About.js │ │ │ │ │ └── About_power.js │ │ │ ├── lib │ │ │ │ ├── ZeroClipboard.swf │ │ │ │ └── changyan.js │ │ │ ├── service │ │ │ │ ├── RouterService.js │ │ │ │ ├── EnumService.js │ │ │ │ ├── CacheService.js │ │ │ │ └── StorageService.js │ │ │ ├── reducers │ │ │ │ ├── reducers.js │ │ │ │ └── todos.js │ │ │ ├── actions │ │ │ │ └── actions.js │ │ │ └── upload.js │ │ ├── fonts │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── laboratory │ │ │ └── gomoku │ │ │ │ ├── wood.jpg │ │ │ │ ├── index.html │ │ │ │ └── index.css │ │ ├── app.js │ │ └── AppRoutes.js │ ├── .DS_Store │ ├── www │ │ ├── images │ │ │ ├── vue.jpg │ │ │ ├── 3fuyu.png │ │ │ ├── react.png │ │ │ ├── weex.png │ │ │ ├── 3fuyu_bg.jpg │ │ │ ├── angular.jpg │ │ │ ├── electron.png │ │ │ ├── favicon.ico │ │ │ ├── gomoku.jpg │ │ │ ├── mongodb.jpg │ │ │ ├── nodejs.jpg │ │ │ ├── 3fuyu_small.jpg │ │ │ ├── banner_small.jpg │ │ │ └── banner_small_two.jpg │ │ ├── fonts │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── laboratory │ │ │ └── gomoku │ │ │ │ ├── wood.jpg │ │ │ │ ├── index.html │ │ │ │ └── index.css │ │ ├── css │ │ │ ├── font-icons │ │ │ │ ├── fonts │ │ │ │ │ ├── material-ui-icons.eot │ │ │ │ │ ├── material-ui-icons.ttf │ │ │ │ │ ├── material-ui-icons.woff │ │ │ │ │ └── material-ui-icons.svg │ │ │ │ └── style.css │ │ │ ├── main.css │ │ │ └── github.css │ │ ├── versions.json │ │ ├── management.html │ │ └── index.html │ └── .babelrc ├── build │ ├── images │ │ ├── 3fuyu.png │ │ ├── react.png │ │ ├── vue.jpg │ │ ├── weex.png │ │ ├── angular.jpg │ │ ├── favicon.ico │ │ ├── gomoku.jpg │ │ ├── mongodb.jpg │ │ ├── nodejs.jpg │ │ ├── 3fuyu_bg.jpg │ │ ├── electron.png │ │ ├── 3fuyu_small.jpg │ │ ├── banner_small.jpg │ │ └── banner_small_two.jpg │ ├── ZeroClipboard.swf │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── laboratory │ │ └── gomoku │ │ │ ├── wood.jpg │ │ │ ├── index.html │ │ │ └── index.css │ ├── css │ │ ├── font-icons │ │ │ ├── fonts │ │ │ │ ├── material-ui-icons.eot │ │ │ │ ├── material-ui-icons.ttf │ │ │ │ ├── material-ui-icons.woff │ │ │ │ └── material-ui-icons.svg │ │ │ └── style.css │ │ ├── main.css │ │ └── github.css │ ├── versions.json │ └── index.html ├── test │ └── testHightlight.html ├── testHS.html ├── README.md ├── package.json ├── webpack.config.js ├── gulpfile.js └── webpack-production.config.js ├── views ├── index.jade ├── error.jade ├── user.jade └── layout.jade ├── .gitignore ├── README.md ├── db └── mongoose.js ├── models ├── management │ ├── attachment │ │ └── imgs.js │ ├── article │ │ ├── terms.js │ │ ├── list.js │ │ └── posts.js │ └── user │ │ └── users.js ├── key_maps.js └── user │ └── posts.js ├── proxy.js ├── router └── router.js ├── package.json ├── api ├── management │ ├── user.js │ ├── terms.js │ ├── upload.js │ └── article.js └── user │ └── article.js ├── bin └── www ├── tools └── tools.js ├── app.js └── test └── testFormatPara2Camel.html /Untitled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/css/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/css/iconfont/iconfont.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/.DS_Store -------------------------------------------------------------------------------- /web/src/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/.DS_Store -------------------------------------------------------------------------------- /web/build/images/3fuyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/3fuyu.png -------------------------------------------------------------------------------- /web/build/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/react.png -------------------------------------------------------------------------------- /web/build/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/vue.jpg -------------------------------------------------------------------------------- /web/build/images/weex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/weex.png -------------------------------------------------------------------------------- /web/src/app/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/vue.jpg -------------------------------------------------------------------------------- /web/src/app/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/js/.DS_Store -------------------------------------------------------------------------------- /web/src/www/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/vue.jpg -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block content 4 | h1= title 5 | p Welcome to #{title} 6 | -------------------------------------------------------------------------------- /web/build/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/ZeroClipboard.swf -------------------------------------------------------------------------------- /web/build/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/fonts/iconfont.eot -------------------------------------------------------------------------------- /web/build/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/fonts/iconfont.ttf -------------------------------------------------------------------------------- /web/build/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/angular.jpg -------------------------------------------------------------------------------- /web/build/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/favicon.ico -------------------------------------------------------------------------------- /web/build/images/gomoku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/gomoku.jpg -------------------------------------------------------------------------------- /web/build/images/mongodb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/mongodb.jpg -------------------------------------------------------------------------------- /web/build/images/nodejs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/nodejs.jpg -------------------------------------------------------------------------------- /web/src/app/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/line.png -------------------------------------------------------------------------------- /web/src/app/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/react.png -------------------------------------------------------------------------------- /web/src/app/images/weex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/weex.png -------------------------------------------------------------------------------- /web/src/www/images/3fuyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/3fuyu.png -------------------------------------------------------------------------------- /web/src/www/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/react.png -------------------------------------------------------------------------------- /web/src/www/images/weex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/weex.png -------------------------------------------------------------------------------- /web/build/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/fonts/iconfont.woff -------------------------------------------------------------------------------- /web/build/images/3fuyu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/3fuyu_bg.jpg -------------------------------------------------------------------------------- /web/build/images/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/electron.png -------------------------------------------------------------------------------- /web/src/app/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/fonts/iconfont.eot -------------------------------------------------------------------------------- /web/src/app/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/fonts/iconfont.ttf -------------------------------------------------------------------------------- /web/src/app/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/fonts/iconfont.woff -------------------------------------------------------------------------------- /web/src/app/images/3fuyu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/3fuyu_bg.jpg -------------------------------------------------------------------------------- /web/src/app/images/add_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/add_pic.png -------------------------------------------------------------------------------- /web/src/app/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/angular.jpg -------------------------------------------------------------------------------- /web/src/app/images/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/electron.png -------------------------------------------------------------------------------- /web/src/app/images/gomoku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/gomoku.jpg -------------------------------------------------------------------------------- /web/src/app/images/gomoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/gomoku.png -------------------------------------------------------------------------------- /web/src/app/images/mongodb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/mongodb.jpg -------------------------------------------------------------------------------- /web/src/app/images/nodejs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/nodejs.jpg -------------------------------------------------------------------------------- /web/src/www/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/fonts/iconfont.eot -------------------------------------------------------------------------------- /web/src/www/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/fonts/iconfont.ttf -------------------------------------------------------------------------------- /web/src/www/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/fonts/iconfont.woff -------------------------------------------------------------------------------- /web/src/www/images/3fuyu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/3fuyu_bg.jpg -------------------------------------------------------------------------------- /web/src/www/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/angular.jpg -------------------------------------------------------------------------------- /web/src/www/images/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/electron.png -------------------------------------------------------------------------------- /web/src/www/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/favicon.ico -------------------------------------------------------------------------------- /web/src/www/images/gomoku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/gomoku.jpg -------------------------------------------------------------------------------- /web/src/www/images/mongodb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/mongodb.jpg -------------------------------------------------------------------------------- /web/src/www/images/nodejs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/nodejs.jpg -------------------------------------------------------------------------------- /web/build/images/3fuyu_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/3fuyu_small.jpg -------------------------------------------------------------------------------- /web/build/images/banner_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/banner_small.jpg -------------------------------------------------------------------------------- /web/src/app/images/default_xz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/default_xz.png -------------------------------------------------------------------------------- /web/src/app/images/delete_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/delete_btn.png -------------------------------------------------------------------------------- /web/src/app/images/line_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/line_green.png -------------------------------------------------------------------------------- /web/src/app/images/logo_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/logo_small.jpg -------------------------------------------------------------------------------- /web/build/laboratory/gomoku/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/laboratory/gomoku/wood.jpg -------------------------------------------------------------------------------- /web/src/app/images/select_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/select_photo.jpg -------------------------------------------------------------------------------- /web/src/app/images/select_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/select_photo.png -------------------------------------------------------------------------------- /web/src/app/js/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/js/components/.DS_Store -------------------------------------------------------------------------------- /web/src/app/js/lib/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/js/lib/ZeroClipboard.swf -------------------------------------------------------------------------------- /web/src/www/images/3fuyu_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/3fuyu_small.jpg -------------------------------------------------------------------------------- /web/src/www/images/banner_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/banner_small.jpg -------------------------------------------------------------------------------- /web/build/images/banner_small_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/images/banner_small_two.jpg -------------------------------------------------------------------------------- /web/src/app/css/iconfont/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/css/iconfont/iconfont.eot -------------------------------------------------------------------------------- /web/src/app/laboratory/gomoku/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/laboratory/gomoku/wood.jpg -------------------------------------------------------------------------------- /web/src/www/laboratory/gomoku/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/laboratory/gomoku/wood.jpg -------------------------------------------------------------------------------- /views/error.jade: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block content 4 | h1= message 5 | h2= error.status 6 | pre #{error.stack} 7 | -------------------------------------------------------------------------------- /web/src/app/images/banner_small_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/app/images/banner_small_two.jpg -------------------------------------------------------------------------------- /web/src/www/images/banner_small_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/images/banner_small_two.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | *.iml 4 | out 5 | gen 6 | node_modules 7 | express_test/myapp/node_modules 8 | .npm-debug.log -------------------------------------------------------------------------------- /views/user.jade: -------------------------------------------------------------------------------- 1 | // 2 | Created by 3fuyu on 16/8/5. 3 | 4 | 5 | extends layout 6 | 7 | block content 8 | h1= title 9 | p Welcome to #{title} -------------------------------------------------------------------------------- /web/build/css/font-icons/fonts/material-ui-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/css/font-icons/fonts/material-ui-icons.eot -------------------------------------------------------------------------------- /web/build/css/font-icons/fonts/material-ui-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/css/font-icons/fonts/material-ui-icons.ttf -------------------------------------------------------------------------------- /web/build/css/font-icons/fonts/material-ui-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/build/css/font-icons/fonts/material-ui-icons.woff -------------------------------------------------------------------------------- /web/src/www/css/font-icons/fonts/material-ui-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/css/font-icons/fonts/material-ui-icons.eot -------------------------------------------------------------------------------- /web/src/www/css/font-icons/fonts/material-ui-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/css/font-icons/fonts/material-ui-icons.ttf -------------------------------------------------------------------------------- /web/src/www/css/font-icons/fonts/material-ui-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3fuyu/blog/HEAD/web/src/www/css/font-icons/fonts/material-ui-icons.woff -------------------------------------------------------------------------------- /views/layout.jade: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title= title 5 | link(rel='stylesheet', href='/stylesheets/style.css') 6 | body 7 | block content 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # blog building... 2 | 3 | hi I'm 3fuyu 4 | 5 | want: nodejs + express + mongodb + react + redux + handlebarsjs + materail + lodash 6 | 7 | now: server is building , already have nodejs + express + mongo + react + lodash... 8 | 9 | -------------------------------------------------------------------------------- /web/src/app/js/service/RouterService.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by 3fuyu on 16/03/11. 3 | */ 4 | 5 | var RouterService = {}; 6 | 7 | //RouterService.config = { 8 | // main: { 9 | // url: '/', 10 | // name: 11 | // } 12 | //}; -------------------------------------------------------------------------------- /web/src/app/js/reducers/reducers.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by 3fuyu on 16/9/14. 3 | */ 4 | "use strict"; 5 | 6 | import { combineReducers } from 'redux'; 7 | import todos from './todos'; 8 | 9 | const blog = combineReducers({ 10 | todos 11 | }); 12 | 13 | export default blog; -------------------------------------------------------------------------------- /web/test/testHightlight.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |less but butter
32 |
19 | 3Fuyu
20 |About Me
24 |25 | 3fuyu(张宇),93年生,平常喜欢跑步,大学跑了三年,工作之后有时间就会跑,现在基本每晚四公里。另外还是Steve 26 | Jobs的狂热粉丝,自传读过不下3遍,因此也被“扭曲厂力”感染上了轻微强迫症。
27 |28 | 其实,我的真实身份是一枚前端攻城狮,狂热的技术爱好者。如今正是前端遍地开花的时代,一个月不吸收点新知识发发,回头再看前端就是一脸懵逼的状态。因此也提醒自己达摩克利斯之剑一直悬在头上。平常喜欢折腾技术,比如这个blog(该站建成于2017.6,基于React 29 | + Node + 30 | Mongodb,其中之前的技术文章来源于本人2014年至今用wordpress记录的文章)就是用腻了wordpress,hexo等等套路,想搞一些不仅仅限于技术文章,完全自己控制的个人站,比如Laboratory,会持续放出自己实验性的项目。
31 |Power (随时更新)
34 |Contact Me
40 |Github: 3fuyu 41 |
42 |QQ: 326141543
43 |E-mail: sdlgdxzhangyu@163.com
44 | {/*Social: segmentfault */} 45 | {/*| 知乎*/} 46 | {/*
*/} 47 |
73 | Copyright © 2014 - {new Date().getFullYear()} ICP 16097049. All Rights Reserved. Powered By 3Fuyu.
74 |