19

我想开始将 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 找到范围?

4

1 回答 1

34

如果要使用 name 在 npm 上发布包@npmtestscope/firstpackage,则需要确保命名空间@npmtestscope存在于npm上。要创建该命名空间,您需要在 npm上创建一个名为的组织npmtestscope

创建组织后,您可以发布名为 execution 的@npmtestscope/firstpackagenpm publish --access public

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

于 2018-12-19T10:17:39.507 回答