npm install mongoose错误解决

今天安装mongoose一直报错,上图

具体的错误记录:

0 info it worked if it ends with ok
1 verbose cli [ ‘C:\\Program Files\\nodejs\\node.exe‘,
1 verbose cli   ‘C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js‘,
1 verbose cli   ‘install‘,
1 verbose cli   ‘mongoose‘ ]
2 info using [email protected]5.3.0
3 info using [email protected]4.0
4 verbose npm-session 96143bef79c692fb
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 http fetch GET 304 https://registry.npmjs.org/mongoose 1340ms (from cache)
8 silly fetchPackageMetaData error for [email protected] Unexpected end of input at 1:144240
8 silly fetchPackageMetaData rectories":{"lib":"./lib/mongoose"},"dist":{"shasum":"e7a1fcb9c35f29d
8 silly fetchPackageMetaData                                                                      ^
9 verbose stack SyntaxError: Unexpected end of input at 1:144240
9 verbose stack rectories":{"lib":"./lib/mongoose"},"dist":{"shasum":"e7a1fcb9c35f29d
9 verbose stack                                                                      ^
9 verbose stack     at Object.parseJSON (C:\Program Files\nodejs\node_modules\npm\node_modules\pacote\node_modules\make-fetch-happen\node_modules\node-fetch-npm\node_modules\json-parse-helpfulerror\node_modules\jju\lib\parse.js:745:13)
9 verbose stack     at parse (C:\Program Files\nodejs\node_modules\npm\node_modules\pacote\node_modules\make-fetch-happen\node_modules\node-fetch-npm\node_modules\json-parse-helpfulerror\index.js:10:13)
9 verbose stack     at consumeBody.call.then.buffer (C:\Program Files\nodejs\node_modules\npm\node_modules\pacote\node_modules\make-fetch-happen\node_modules\node-fetch-npm\src\body.js:96:50)
9 verbose stack     at <anonymous>
9 verbose stack     at process._tickCallback (internal/process/next_tick.js:188:7)
10 verbose cwd C:\Users\zh-ji\Desktop\CSS3_yhdljm(jb51.net)\CSS3_yhdljm
11 verbose Windows_NT 10.0.15063
12 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "mongoose"
13 verbose node v8.4.0
14 verbose npm  v5.3.0
15 error Unexpected end of input at 1:144240
15 error rectories":{"lib":"./lib/mongoose"},"dist":{"shasum":"e7a1fcb9c35f29d
15 error                                                                      ^
16 verbose exit [ 1, true ]

看下面,发现是npm 的 shasum check failed,查资料发现,可能是因为NPM未更换国内淘宝镜像所致....换一下

镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):

1.通过config命令

npm config set registry http://registry.cnpmjs.org
npm info underscore (如果上面配置正确这个命令会有字符串response)

2.命令行指定

npm --registry http://registry.cnpmjs.org info underscore 
 

3.编辑 ~/.npmrc 加入下面内容

registry = http://registry.cnpmjs.org

我选用了第一种方法,然后成功安装。

时间: 2024-10-13 01:31:02

npm install mongoose错误解决的相关文章

npm使用及错误解决

1.版本修改 命令: npm install [email protected]版本号 -g 2.安装淘宝镜像 npm install -g cnpm --registry=https://registry.npm.taobao.org 3.node-sass安装失败 主要是windows平台缺少编译环境. 命令: npm install -g node-gyp 安装好环境后npm install 4. 解决:1)删除package.lock.json 2)清除cache:npm cache c

环信webim1.1.2版本在windows下npm环境搭建错误解决

1.1.2版本的webim从ui到整体的代码结构都做了很大改变,从代码结构上采用node.js的环境进行开发和打包,最终打包的输出项目,不依赖node.js的环境进行运行,得益于webpack的打包实现. 这里有详细的管网介绍:http://www.imgeek.org/article/825308179 下载地址:https://github.com/easemob/web-im/releases/tag/v1.1.2 先说明一下在搭建node.js环境时到打包碰到的问题: 前提:必须成功搭建

Windows环境下npm install常见错误

Windows环境下npm install安装包依赖时,常出现一些错误,下面为个人解决办法: 错误一 缺少python环境: G:\nodejs\moviesite\node_modules\bcrypt>if not defined npm_config_node_gyp (node "D:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\\..\..\node_modulesnode-gyp\bin\node-gyp.js&

vue 项目 npm install 报错解决

node-sass 安装报错解决办法 2017年04月15日 14:34:25 阅读数:20189 E:\kibana>npm install node-sass > [email protected] install E:\kibana\node_modules\node-sass > node scripts/install.js Cannot download "https://github.com/sass/node-sass/releases/download/v3.

Electron npm install 常见错误(Windows)

问题一:node_gyp使用版本不对 if not defined npm_config_node_gyp (node "C:\Users\Administrator\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\Ad

pip install python-ldap 错误解决办法

pip install ldapDownloading/unpacking ldap Could not find any downloads that satisfy the requirement ldapCleaning up...No distributions at all found for ldapStoring debug log for failure in /home/jedrek/.pip/pip.log? bom git:(parser) ? sudp pip insta

Mac环境下执行npm install报权限错误解决办法

1. 一般情况 sudo npm install 2. 特殊情况 npm install --unsafe -perm 3. 究极情况 sudo npm install --unsafe -perm 原文地址:https://www.cnblogs.com/similar/p/11247327.html

使用npm install报错-4048 operation not permitted解决

刚刚使用npm install时一直报错-4048 operation not permitted,也尝试了多种方法,终于使问题得到解决,这里总结几种方法,先贴图: 一:权限问题 首先看到operation not permitted我们能想到权限问题,所以这时候我们可以以管理员身份运行cmd或者直接快捷键Win+X来打开. 二:依赖包错误 如上图,根据错误日志我们可以明显看到这个错误minimatch版本过低和dashdash错误,我们只要全局安装好这两个包问题就可以得到完美解决. 当我们在n

使用npm install报错- operation not permitted解决

原文:https://blog.csdn.net/weixin_41715295/article/details/79508104 这几天使用npm install时一直报错-4048 operation not permitted,也尝试了多种方法,终于使问题得到解决,这里总结几种方法,先贴图:  一:权限问题 首先看到operation not permitted我们能想到权限问题,所以这时候我们可以以管理员身份运行cmd或者直接快捷键Win+X来打开. 二:依赖包错误 如上图,根据错误日志