@colin-cli/react-develop-template
v1.0.0
Published
React研发模版
Downloads
2
Readme
colin-cli研发脚手架
介绍
Web前端快速搭建React项目
安装
1. 安装插件
1.1 Eslint/Prettier ESLint
首选项-设置-settings.json文件,设置
"editor.formatOnSave": false, // 关闭保存自动格式化
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true
}, // 自动调整 import 语句相关顺序
1.2 koroFileHeader
首选项-设置-settings.json文件,设置
"fileheader.customMade": {
"Author": "东林", // 文件编辑者
"Date": "Do not edit", // 文件创建时间(不变)
"LastEditTime": "Do not edit", // 文件最后编辑时间
"description": "描述",// 文件描述
}, // 生成头部文件注释快捷键:window:ctrl+alt+i,mac:ctrl+cmd+i
2. 安装依赖
npm install
3. 开发环境
# 启动命令
npm start
4. 编译打包
npm run build