gpt4 book ai didi

node.js - Nodemon 启动脚本并运行 eslint

转载 作者:太空宇宙 更新时间:2023-11-03 22:43:29 25 4
gpt4 key购买 nike

我正在 Vue.JS 中启动一个项目,而且我对 Nodemon 有点陌生。

这是我的 package.json 文件

{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/app.js --exec 'npm run eslint'",
"lint": "eslint **/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"eslint": "^4.16.0",
"nodemon": "^1.14.12"
}
}

我可以使用“nodemon src/app.js”让nodemon通过app.js运行。我在 --exec 之后尝试了一大堆组合,但没有任何运气。

最佳答案

正确的方法是(在package.json和windows中):

"scripts": {
"start": "node index",
"start-dev": "nodemon --exec \"npm run lint && node index\"",
},

关于node.js - Nodemon 启动脚本并运行 eslint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48576393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com