npm 如何发布一个 私域 @xxx/xxx 包

本文详细介绍了如何在npm上发布私域包,包括创建文件夹、初始化package.json、登录npm、设置发布镜像及发布命令。在发布过程中,需要注意包名与npm账户的一致性,以及使用正确的发布命令。然而,在实际操作中遇到了404错误,提示包名不在当前注册表中,这可能是因为用户名与包名前缀不匹配导致的。
摘要由CSDN通过智能技术生成

 

 

npm 如何发布一个 私域 @xxx/xxx 包

1. 创建一个文件夹

2. npm init -y

3. 修改 package.json

{
  "name": "@zixian/demo", // @xxx你当前账号的名称
  "version": "0.0.2",
  "description": "test",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "zixian",
  "license": "ISC"
}

4. 登录

npm login
# 或者
npm adduser
    1. Username 用户名
    1. Password 密码 (密码输入是看不到的)
    1. Email 邮箱
    1. Enter one-time password 验证码

5. 发布

发布镜像 必须切换

npm set registry http://registry.npmjs.org

发布命令

# 普通包
npm publish
# @username/packageName
# username 你当前登录的用户名 必须保持一致
npm publish --access public

包名与npm账户不一致 当前登录账号 wuyanzhu

PS D:\study\npm\@zixian\demo> npm publish --access public
npm notice 
npm notice 📦  @zixian/demo@1.0.0
npm notice === Tarball Contents ===
npm notice 27B  index.js
npm notice 226B package.json
npm notice === Tarball Details ===
npm notice name:          @zixian/demo
npm notice version:       1.0.0
npm notice filename:      @zixian/demo-1.0.0.tgz
npm notice package size:  358 B
npm notice unpacked size: 285 B
npm notice shasum:        073c32b83a4b98ac898973f0f721a10f3beefda3
npm notice integrity:     sha512-gm7KnVN+gYUd0[...]iPs5bdHt84yGQ==
npm notice total files:   3
npm notice
npm notice Publishing to https://registry.npmjs.org/
npm ERR! code E404
npm ERR! 404 Not Found - PUT https://registry.npmjs.org/@zixian%2fdemo - Scope not found
npm ERR! 404
npm ERR! 404  '@zixian/demo@1.0.0' is not in this registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     D:\nodejs\node_cache\_logs\2022-05-17T07_47_22_410Z-debug-0.log

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

子羡爱学习

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值