为express和node.js文件重新加载

时间:2018-03-16 18:26:23

标签: node.js express web-deployment

我是表达和node.js的新手。我在VSCode编辑器中使用ejs作为视图引擎。 我已经安装了live-server和nodemon。实时服务器与.html文件一起正常工作,即.html文件中的更改会立即反映在浏览器中,无需手动刷新。 但我坚持使用.ejs和.js文件。是否有任何方法可以在发生更改时在浏览器中自动重新加载这些文件。 我的package.json文件看起来像.........

  {
  "name": "lms",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "dependencies": {
    "ejs": "*",
    "express": "^4.16.2",
    "express-handlebars": "^3.0.0",
    "live-server": "^1.2.0",
    "nodemon": "^1.17.2",
    "qr-image": "^3.2.0"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "nodmon": "nodemon -e js,ejs,html -w public -w views -w routes -w  models   app.js",
"live-srvr": "live-server views/"
  },
  "author": "",
  "license": "ISC"
}

0 个答案:

没有答案