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 に存在することを確認する必要があります。その名前空間を作成するには、 npmで組織を作成npmtestscope
という名前にする必要があります。
組織を作成したら、@npmtestscope/firstpackage
を実行して、npm publish --access public
という名前のパッケージを公開できます。
注:npm組織に属するパッケージに対してnpm publish
を実行するには、のメンバーとしてコンピューターにログインする必要があります。その組織。 npm login
を実行することでそれを行うことができます。 npm whoami
コマンドは、現在のログインに関連付けられているユーザー名を表示します。