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、出现错误 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
的值换掉。如果还出现上述错误就是还是重名的,继续换!
3、 出现错误 npm publish failed put 500 unexpected status code 401
出现原因:没有登录成功
解决方法:操作npm login
重新登录
注意:npm
包package.json
中registory
属性一定要填写,每次npm publish
时package.json
中version
版本一定要大于上一次。
参考:
http://blog.csdn.net/mrchengzp/article/details/78358994
https://www.cnblogs.com/pingfan1990/p/4824658.html