1.0.1 • Published 2 years ago

nihil-test v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

npm 发布自己的包

发布流程

1. 注册一个npm 账号
2. 使用 npm init 指令创建一个项目
3. 编写index.js, 其中要包含 export 导出项 
4. 运行 npm link
5. 使用 npm login 进行登录
6. 使用 npm publish 进行发布 

问题及解法

登录问题

cnpm login

npm ERR! code E403
npm ERR! 403 403 Forbidden - PUT https://registry.npmmirror.com/-/user/org.couchdb.user:nihilwater - [FORBIDDEN] Public registration is not allowed
npm ERR! 403 In most cases, you or one of your dependencies are requesting
npm ERR! 403 a package version that is forbidden by your security policy.

解决办法: 更换镜像源,再进行修改,在发布包之后再将镜像源修改回去

npm config set registry https://registry.npmjs.org/
npm login 
  ...
npm config set registry http://registry.npm.taobao.org/

更新发布错误

npm ERR! code E403
npm ERR! 403 403 Forbidden - PUT https://registry.npmjs.org/nihil-test - You cannot publish over the previously published versions: 1.0.0.
npm ERR! 403 In most cases, you or one of your dependencies are requesting
npm ERR! 403 a package version that is forbidden by your security policy, or
npm ERR! 403 on a server you do not have access to.

更新

1. 修改版本号
2. 执行 npm publish 命令