2
npmパッケージをスコープに公開したいと考えています。ユーザー名としてスコープのユーザーとして登録する必要がありますか?例私はこのようなパッケージを作成する場合:公開方法NPMスコープパッケージ/ NPMスコープが見つかりません?
[email protected]:~/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)
[email protected]:~/firstpackage$ touch README.md
[email protected]:~/firstpackage$ npm publish
これが結果です:
npm ERR! 404 Scope not found : @npmtestscope/firstpackage
だから私は、スコープを見つけるために、NPMために何をする必要がありますでしょうか?このページにあなたのスコープに完全な手順1、2をパッケージを発行できるようになりますNPMの組織、および3を作成するために
あなたが@npmtestscopeをしたい場合、あなたがしなければなりませんa npmtestscope organizationを作成するhttps://www.npmjs.com/docs/orgs/ –
私は答えを編集し、それを受け入れた。希望はOKです。ご協力ありがとうございました。 – Ole
問題ありません!ありがとう! –