如使用该前端脚手架,可以先安装
-
npm install -g yunle-cli
-
yunle init <project-name>
-
cd <project-name> && npm install
-
npm run dev
开发过程中,你用得最多的会是
npm run dev
,但是这里还有很多其它的处理:
npm run <script> |
用途 |
---|---|
dev/build |
开发/生产环境 --- 启动服务。 |
.
├── config # Server config
│ ├── server.config # server
├── docs # 说明
├── src # 应用源文件
│ ├── api # api方法和配置库
│ ├── api.config.js # api接口配置
│ ├── index.js # fetch方法
│ ├── components # 组件库
│ ├── DevTools # redux dev tools
│ ├── containers # 容器库
│ ├── App # 入口容器
│ ├── router # 路由配置
│ ├── store # store
│ ├── index.html # html入口
│ ├── index.js # js入口
├── .babelrc
├── .eslintrc.js
├── package.json
├── webpack.config.js