gpt4 book ai didi

nodemon - 如何从 package.json 在 Windows 中运行 nodemon

转载 作者:行者123 更新时间:2023-12-02 16:30:54 25 4
gpt4 key购买 nike

我正在关注VUE tutorial在 Mac 上(在 youtube 中显示)。

在我的 src/app.js 中,我只有 console.log('hi');

如 YouTube 视频所示,package.json 中 Mac 的启动命令为:

"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js src/app.js --exec 'npm run lint && node'",
"lint": "./node_modules/.bin/eslint **/*.js"

},

在这种情况下找不到nodemon。

所以我将正斜杠更改为反斜杠:

"scripts": {
"start": ".\\node_modules\\nodemon\\bin\\nodemon.js src\\app.js --exec 'npm run lint && node'",
"lint": ".\\node_modules\\.bin\\eslint **\\*.js"

},

但是现在当我运行 npm start 时,我收到了一个在 nodemon.js 中出现错误的警报

 line 1 
charachter 1
invalid character
800A03F6

我尝试在 src/app.js 中使用正斜杠并得到相同的错误。与单引号有关吗?

教程在这里:(启动命令见于 21:43)这里:https://www.youtube.com/watch?v=Fa4cRMaTDUI&t=21m43s

最佳答案

你只需要使用

npx nodemon app.js 命令

全局安装nodemon后与

npm install -g nodemon

关于nodemon - 如何从 package.json 在 Windows 中运行 nodemon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52156074/

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