更改 windows 配置文件 nodemon nodejs 不工作
Change windows profile nodemon nodejs not working
我已经使用 nodemon util 来帮助我在 nodejs 开发方面的工作。在我的电脑上 (Windows) 我不得不更改我的个人资料,在新的个人资料中我不能再使用 nodemon 了......
我已经像这样重新安装了它:
npm install --save-dev nodemon
npm install --save-dev nodemon -g
我把它从 node_modules 中删除并重新安装,但还是出现同样的错误:
'nodemon' is not recognized as an internal or external command, operable program or batch file.
有什么想法吗?
npm i nodemon -g
将全局安装模块,以便您的 windows 可以识别命令
我一次又一次地试图找出,whr 是我的问题,我明白了:
我在路径变量中有错误的值:
错误: C:\..\AppData\Roaming\npm\node_modules
好: C:\..\AppData\Roaming\npm\
我已经使用 nodemon util 来帮助我在 nodejs 开发方面的工作。在我的电脑上 (Windows) 我不得不更改我的个人资料,在新的个人资料中我不能再使用 nodemon 了...... 我已经像这样重新安装了它:
npm install --save-dev nodemon
npm install --save-dev nodemon -g
我把它从 node_modules 中删除并重新安装,但还是出现同样的错误:
'nodemon' is not recognized as an internal or external command, operable program or batch file.
有什么想法吗?
npm i nodemon -g
将全局安装模块,以便您的 windows 可以识别命令
我一次又一次地试图找出,whr 是我的问题,我明白了: 我在路径变量中有错误的值:
错误: C:\..\AppData\Roaming\npm\node_modules
好: C:\..\AppData\Roaming\npm\