创建文件夹
mkdir server
初始化
npm init -y
接着创建入口文件 index.js,在package.json的script脚本中添加启动项
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "nodemon index.js", // 启动项
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}
其中,nodemon是需要全局安装一下,为什么要安装nodemon,不能跟vue项目的
npm run dev 一样么,原因如下:
在server项目修改代码后,需要重新启动 Express 应用,所做的修改才能生效。若之后的每次代码修改都要重复这样的操作,势必会影响开发效率,而·Nodemon,它会监测项目中的所有文件,一旦发现文件有改动,Nodemon 会自动重启应用
npm i -g nodemon
启动
npm run serve
网友评论