操作步骤
1. 拉取模板代码
shell
# 拉取模板代码
fun init -n express-demo https://github.com/muxiangqiu/fc-express-nodejs8.git
# Or
fun init -n express-demo gh:muxiangqiu/fc-express-nodejs8
1234
2. 本地开发
shell
# 进入项目目录
cd express-demo
# 安装项目依赖
npm install
# 安装concurrently
npm install concurrently -D
123456
修改package.json中scripts的dev字段
json
"dev": "webpack --config webpack.dev.js"
"dev": "concurrently -k -p \"[{name}]\" -n \"Webpack,Fun\" -c \"yellow.bold,cyan.bold\" \"webpack --watch --config webpack.dev.js\" \"fun local start\""
12
执行命令,这样,修改js文件,刷新浏览器就能看到最新效果
shell
npm run dev
1
3. 编译
shell
# 生产编译
npm run build
12
4. 部署
shell
fun deploy
1
评论 (0)