美文网首页
新建server项目

新建server项目

作者: Jay_ZJ | 来源:发表于2019-07-19 23:03 被阅读0次

创建文件夹

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

相关文章

网友评论

      本文标题:新建server项目

      本文链接:https://www.haomeiwen.com/subject/vfvelctx.html