npx create-react-app myprojiectname
cd 当前文件夹
npm run eject 显示配置文件
支持sass
cnpm i node-sass@4 --save
支持antd
cnpm i antd --save
redux需要安装 以下依赖:
cnpm install redux --save
cnpm install react-redux --save
cnpm install redux-actions --save
@connect装饰器报错处理
因为用到了es6/7的语法,需要安装babel转码
npm run eject //解除封装
cnpm install babel-plugin-transform-decorators-legacy --save-dev
cnpm install @babel/plugin-proposal-decorators --save-dev
在package.json中添加插件支持ES7
“babel”: {
“presets”: [
“react-app”
],
“plugins”: [
["@babel/plugin-proposal-decorators",{“legacy”: true}]
]
},
@connet语法报错
export default App语法需要分开写
跨域代理支持
cnpm i http-proxy-middleware -D
路由支持
cnpm i react-router-dom -S
axios ajax请求
cnpm i axios -S
echarts
npm install --save echarts-for-react
npm install --save echarts
路由
cnpm i react-router-dom -S
富文本编辑
cnpm install --save react-draft-wysiwyg draft-js