概述
在前端学习过程中想必都会学习node.js吧,在node.js中有一个第三方模块nodemon尤为重要,它可以实现监听代码文件的变动,当代码改变之后,自动重启,就不用我们每修改一次代码就要手动重启,大大提高了工作的效率。但是安装过程中经常会出错,需要我们自行去解决。
下载nodemon第三方模块
在windows powershell 中写入以下命令
npm install nodemon -g
Tip: -g表示全局安装,不可去掉
显示错误
在安装过程中会等待,可是等着等着会显示出以下错误
npm ERR! Unexpected end of JSON input while parsing near '... Ise, "directories": {},'
npm ERR! A complete log of this run can be found in:
npm ERR! C: \User s\Huite\AppData\Roaming\npm cache\_ logs\2020 -04-03T15_ 26 08_ 305Z- debug. log
会出现错误的原因就是由于npm下载默认在国外服务器,国内下载速度慢导致的延迟,从而下载失败
解决方案
利用cnpm下载
在windows powershell 命令行中输入
cnpm install nodemon -g
如果还是报错,说明电脑没有下载cnpm,此时我们需要下载cnpm
下载cnpm
在windows powershell 中写入以下命令
npm install -g cnpm --registry=https://registry.npm.taobao.org
下载成功后,我们需要检查是否能够执行
在windows powershell 中写入以下命令
cnpm -v
如果显示版本号说明没有问题,直接输入cnpm install nodemon -g即可完成对nodemon的安装。如果不幸的出了以下错误,也别着急。
显示错误
cnpm : 无法加载文件 C:\Users\PC\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的
about_Execution_Policies。
所在位置 行:1 字符: 1
cnpm install amfe-flexible
+ ~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
会出现次错误说明运行的权限不够
解决方案
第一步:
重新打开一个power shell并且以管理员身份运行
第二步:
输入
set-ExecutionPolicy RemoteSigned
然后输入A 回车即可。
最后我们再输入cnpm install nodemon -g
你就会发现已经安装成功啦~~
网友评论