无法使用nodemon运行js文件
我从项目中的 npm 安装 nodemon,但无法使用“nodemon run start”运行 js 文件并面临以下错误: nodemon :术语“nodemon”不被识别为 cmdlet、函数、脚本文件或可操作程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试。
I install nodemon from npm in project but cant run js file with 'nodemon run start' and facing this error:
nodemon : The term 'nodemon' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
-g
选项全局安装nodemon
。这会将nodemon添加到您的
PATH
环境变量中,以便您的终端知道nodemon的可执行文件在哪里。否则你的终端不知道你正在尝试运行哪个可执行文件。
您的第二个选择是通过 npx 运行它。
使用以下命令:
npm 将为您处理查找和运行可执行文件。当您安装
npm
时,默认情况下,npx
命令会安装在您的计算机上。You need to install
nodemon
globally using the-g
option.This will add nodemon to your
PATH
environment variable so that your terminal knows where the executable file for nodemon is.Otherwise your terminal doesn't know which executable you're trying to run.
Your second option is to run it through
npx
.Use the following:
npm will handle locating and running the executable for you. The
npx
command is installed on your computer by default when you installnpm
.则需要安装nodemon
如果您还没有运行开发环境,
$ npm install --save-dev
全局安装nodemon run
运行你的应用程序/服务器 use
如果你的入口文件的名称不是 app 在命令中使用它的名称
You will need to install nodemon if you haven't already
for dev environment run
$ npm install --save-dev
to install nodemon globally run
to run your app/server use
If the name of your entry file is not app use its name in the command