gpt4 book ai didi

node.js - 如何发布 NPM Scoped Packages/NPM scope not found?

转载 作者:搜寻专家 更新时间:2023-10-31 22:23:43 24 4
gpt4 key购买 nike

我想开始将 npm 包发布到一个范围。我是否需要以范围作为我的用户名注册为用户?例如,如果我创建这样的包:

    ole@MKI:~/firstpackage$ npm init

Use `npm install <pkg> --save` afterwards to install a package and
save it as a dependency in the package.json file.

Press ^C at any time to quit.
name: (firstpackage) @npmtestscope/firstpackage
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to /home/ole/deletethis/package.json:

{
"name": "@npmtestscope/firstpackage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}


Is this ok? (yes)

ole@MKI:~/firstpackage$ touch README.md
ole@MKI:~/firstpackage$ npm publish

这是结果:

npm ERR! 404 Scope not found : @npmtestscope/firstpackage

那么我需要做什么才能让 npm 找到作用域?

最佳答案

如果您想使用名称 @npmtestscope/firstpackage 在 npm 上发布包,您需要确保命名空间 @npmtestscope 存在于 npm 上.要创建该命名空间,您需要 create an organization on npm名称为 npmtestscope

创建组织后,您可以通过执行 npm publish --access public 发布名为 @npmtestscope/firstpackage 的包。

注意:要为属于 npm 组织的包运行 npm publish,您需要以该组织的成员身份登录计算机。您可以通过执行 npm login 来做到这一点。 npm whoami 命令将显示与当前登录关联的用户名。

关于node.js - 如何发布 NPM Scoped Packages/NPM scope not found?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43824012/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com