发布npm包时遇到的问题及解决方法
1、出现这个错误 no_perms Private mode enable, only admin can publish this module
错误输出内容
-
npm ERR! publish Failed PUT 403
-
npm ERR! code E403
-
npm ERR! no_perms Private mode enable, only admin can publish this module:
出现原因:使用的是淘宝源cnpm,登陆到的是cnpm
解决方法:切换到npmjs的网址,代码如下
npm config set registry http://registry.npmjs.org/
2、出现错误
no_perms Private mode enable, only admin can publish this module
no_perms Private mode enable, only admin can publish this module
错误输出内容
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! no_perms Private mode enable, only admin can publish this module:
出现原因:使用的是淘宝源
cnpm
,登陆到的是
cnpm
解决方法:切换到
npmjs
的网址,代码如下
npm config set registry http://registry.npmjs.org/
3、出现错误
You do not have permission to publish "npmtest". Are you logged in as the correct user?
You do not have permission to publish "npmtest". Are you logged in as the correct user?
错误输出内容
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! You do not have permission to publish "npmtest". Are you logged in as the correct user? :
出现原因:所要
publish
的包的
name
和
npmjs
网上已经发布的包的名字重复,所以收你没有权限发布这个名字的包。(简单解释就是你想要的名字被别人抢先注册了)
解决方法:找到
package.json
文件,把
name
的值换掉。如果还出现上述错误就是还是重名的,继续换!
4、 出现错误
npm publish failed put 500 unexpected status code 401
npm publish failed put 500 unexpected status code 401
出现原因:没有登录成功
解决方法:操作
npm login
重新登录
注意:
npm
包
package.json
中
registory
属性一定要填写,每次
npm publish
时
package.json
中
version
版本一定要大于上一次。
5、出现错误
npm ERR! 403 In most cases, you or one of your dependencies are requesting a package version that is forbidden by your security policy.
出现原因:第一次创建完账号,尚未邮箱验证通过
解决方法:打开npm login时,输入的邮箱,点击验证通过,在重新发布。
参考:
http://blog.csdn.net/mrchengzp/article/details/78358994
https://www.cnblogs.com/pingfan1990/p/4824658.html
转载链接:https://www.jianshu.com/p/6ffa934da70c 原作者:街角仰望