如何发布 NPM Scoped Packages / NPM scope not found?

How to publish NPM Scoped Packages / NPM scope not found?

我想开始将 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. To create that namespace, you need to create an organization on npm 上,名称 npmtestscope.

创建组织后,您可以通过执行 npm publish --access public.

发布名为 @npmtestscope/firstpackage 的程序包

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