0.0.1 • Published 6 years ago
admin_lz v0.0.1
react-ve
一个让你快速搭建react
开发环境的脚手架
优化项
- 代码丑化压缩
- 代码分割(code-splitting) 模板使用基于路由的动态导入
- 使用 DLL 将公用依赖库模块封装为一个独立文件
安装及使用
npm install react-ve -g
react-ve init [projectName]
启动项目
cd [projectName]
yarn
或npm install
npm run dll
npm start
在浏览器地址栏中输入:localhost:3000
即可访问
项目打包,运行npm run build
即可,项目将打包至dist
文件夹内
默认使用技术栈:
react
typescript
antd
styled-components
react-router-dom
immutable
你可以根据喜好来install
或uninstall
它们。
建议:
项目公共样式(包括antd
、框架、装饰页)使用less
,页面级样式采
用styled-components
,以防止样式污染。
DLL :
在webpack.dll.config.babel.js
中,默认打包的公共包包括:
entry: {
vendor: ['react', 'react-dom', 'antd', 'react-router-dom', 'immutable']
}
你可以根据自己的喜好做删减
0.0.1
6 years ago