无法使用nodemon运行js文件

发布于 2025-01-11 18:04:54 字数 152 浏览 0 评论 0原文

我从项目中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿童谣 2025-01-18 18:04:54

您需要使用 -g 选项全局安装 nodemon

npm install -g nodemon

这会将nodemon添加到您的PATH环境变量中,以便您的终端知道nodemon的可执行文件在哪里。

否则你的终端不知道你正在尝试运行哪个可执行文件。

您的第二个选择是通过 npx 运行它。

使用以下命令:

npx nodemon {filename}

npm 将为您处理查找和运行可执行文件。当您安装 npm 时,默认情况下,npx 命令会安装在您的计算机上。

You need to install nodemon globally using the -g option.

npm install -g nodemon

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:

npx nodemon {filename}

npm will handle locating and running the executable for you. The npx command is installed on your computer by default when you install npm.

把昨日还给我 2025-01-18 18:04:54

则需要安装nodemon

如果您还没有运行开发环境,
$ npm install --save-dev

全局安装nodemon run

npm install -g nodemon

运行你的应用程序/服务器 use

nodemon app 

如果你的入口文件的名称不是 app 在命令中使用它的名称

nodemon {filename}

You will need to install nodemon if you haven't already

for dev environment run
$ npm install --save-dev

to install nodemon globally run

npm install -g nodemon

to run your app/server use

nodemon app 

If the name of your entry file is not app use its name in the command

nodemon {filename}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文