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.
At line:1 char:1
+ nodemon ap.js
+ ~~~~~~~
+ CategoryInfo : ObjectNotFound: (nodemon:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
将nodemon作为全局包安装
NPM安装-g nodemon
Nodemon 是一款非常实用的工具,用来监控你 node.js 源代码的任何变化和自动重启你的服务器。 Nodemon 是一款完美的开发工具,可以使用 npm 安装。 设计原则 更少的标志更好 适用于所有平台 更少的功能 让个人建立在nodemon之上 提供所有CLI功能作为API 贡献必须通过测试
问题内容: 我有一个问题:nodemon不能运行npm脚本(例如), 但是如果在npm脚本之外的命令行上调用nodemon ,则nodemon会正常运行。 在npm脚本中如何调用它: 运行npm start脚本时: 我一直在寻找解决方案,但没有找到解决方案。 问题答案: 您可以通过添加以下内容来解决此问题: 在中不存在时会发生问题。 已添加,因为仅在开发期间才需要。
我正在遵循本指南,并在“是否需要运行此代码”一节中发言: 但我得到了这个错误: nodemon:术语'nodemon'不能识别为cmdlet、函数、 脚本文件或可操作程序的名称。检查名称的拼写,或者如果包含路径 ,请验证路径是否正确,然后重试。行:1 char:1+nodemon server+~~~~~~~~+CategoryInfo:objectNotfound:(nodemon:string
当我尝试使用nodemon执行server.js文件时,它显示错误。 C:\users\gourav\webstormprojects\node.js-register-login-app-master>nodemon server.js 内部/modules/cjs/loader.js:584 投掷失误;^ 错误:找不到模块“C:\users\gourav\appdata\roaming\npm
null null 下面是我的“server.js”文件,以防您需要参考。