启用nodemon热更新
// npm init 初始化当前文件夹
// npm install nodemon -g 全局安装nodemon
// 修改文件夹下的 main 的指向, 使用哪个文件就指向哪个文件
// http/package.json
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "from.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}