react-molin
react-molin是一个全新的基于webpack2、react15、react-router4、antd-mobile的前端架构实现方案(h5)
react-molin的优势
基于最新的webpack2、react15、react-router4
相比antd官方框架dva更加轻量级
不同入口页面css/js单独合并压缩
ES2015
less替代css
fetch替代Ajax
项目依赖
webpack^2.3.2
antd-mobile^1.0.7
react^15.4.2
react-router-dom^4.0.0
运行
git clone https://github.com/Molin123/react-molin.git npm install --registry https://registry.npm.taobao.org info underscore npm run start -- 127.0.0.1
然后即可以访问http://127.0.0.1:1024/home.html#/
看到页面了
编译
npm run build
编译后的文件会生成到output
目录下,直接将这个目录下的文件部署到服务器上即可。
目录结构
. ├── src │ ├── app │ │ ├── index.jsx │ │ └── list.jsx │ ├── home │ │ ├── index.jsx │ │ └── list.jsx │ ├── home.jsx │ ├── app.jsx │ └── template.ejs ├── output │ ├── css │ ├── image │ └── js ├── .babelrc ├── package.json └── webpack.config.js
todoList
支持多入口(3.30 done)common拆分(暂时不做)静态文件加戳(3.31 done)dev-server配置(4.6 done)目录结构优化
webpack配置拆分(暂时不需要)使用react-router路由(3.30 done)fetch语法支持(4.1 done)打包后js文件过大(3.31 已做压缩处理 后期进一步优化)热更新(4.5 done)css打包存在问题(4.5 done)验证多less文件的合并情况(4.6 done)热更新响应太慢,可能和start时的Warning有关
图片目录
future
redux
deploy
。。。