一 .安装:
1.下载node.js
windows:
https://nodejs.org/dist/v8.5.0/node-v8.5.0-x64.msi
Linux:(解压直接运行)
https://nodejs.org/dist/v6.11.3/node-v6.11.3-linux-x64.tar.xz
2. 安装cnpm 镜像 http://npm.taobao.org/
命令: npm install -g cnpm --registry=https://registry.npm.taobao.org
3.安装依赖类库
命令: cnpm install
4.安装webpack打包工具(注:这个过程中缺少什么包都可以cnpm install )
command:cnpm instal webpack -g
5.启动应用
npm start
二.常规目录结构:
├── assets //存放静态图片
├── components //存放组件目录
│ └── LineChart //画图组件
├── models //组件之间调用封装模型
├── routes //路由组件
│ ├── dashboard //组件1
│ │ ├── chartsMoudlar
│ │ ├── chartsSearch
│ │ ├── counterSearch
│ │ ├── searchMoudlar
│ │ └── TreeMenu
│ ├── real-dashboard
│ │ └── chartsSelect
│ └── templates
│ └── update
├── services //跟后台交互业务逻辑组件
└── utils //常用工具
└── index.js //初始解析js
└── router.js //路由js
原文链接:https://www.f2er.com/react/302872.html