感觉发布过程中的坑让我踩的差不多了…在这里记录一下
基本流程
先简单记录一下发布流程
初始化包
npm init
登录npm
npm login
发布包
npm publish
问题
接下来就是遇到的问题了,每个问题都包含报错信息,请善用ctrl + f
搜索,下文报错中涉及到自己包名的我都替换为了your-package
。
邮箱未验证
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! you must verify your email before publishing a new package: https://www.npmjs.com/email-edit : your-package
这个是注册后没有验证邮箱,登录自己邮箱找到对应的邮件确认就好了。注意别选错了,注册npm
时会发给你两个邮件,我当时就是眼瞎没有看到第二个。如果验证邮件过期的话登录自己的 npm
主页重新发一个就好了。
没有权限发布
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! You do not have permission to publish "your-package". Are you logged in as the correct user? : your-package
你的包和别人的包重名了,npm
里的包不允许重名,所以去 npm
搜一下,改个没人用的名字就可以了。
需要登录
npm ERR! code ENEEDAUTH
npm ERR! need auth auth required for publishing
npm ERR! need auth You need to authorize this machine using `npm adduser`
后面已经注明了,输入npm adduser
重新登录就可以了,过程和npm login
一样,这个问题在你切换了 npm 源之后或登录过期后都有可能发生。
只有管理员才有权限发布
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! [no_perms] Private mode enable, only admin can publish this module [no_perms] Private mode enable, only admin can publish this module: your-package
这个是你的源设置成第三方源的时候才有可能发生,比如设置了淘宝源就可能会导致该问题。只要把源改回默认的就可以了,如下:
npm config set registry http://registry.npmjs.org
包名过于类似
npm ERR! publish Failed PUT 403
npm ERR! code E403
npm ERR! Package name too similar to existing packages; try renaming your package to '@hopgoldy/auto-git' and publishing with 'npm publish --access=public' instead : your-package
如果npm
上已经有了不少和你的包名类似的包,就会出现这个问题,在package.json
中修改你的包名就可以了
无法发布到私有包
npm ERR! publish Failed PUT 402
npm ERR! code E402
npm ERR! You must sign up for private packages :
这个当你的包名为@your-name/your-package
时才会出现,原因是当包名以@your-name
开头时,npm publish
会默认发布为私有包,但是 npm
的私有包需要付费,所以需要添加如下参数进行发布:
npm publish --access public