作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注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/
我是一名优秀的程序员,十分优秀!