1. ホーム
  2. node.js

[解決済み】npm install パッケージ.json の依存関係でプライベートな github リポジトリをインストールする。

2022-04-05 19:47:13

質問

githubのプライベートリポジトリをnpmでインストールしようとしていますが、他のgithubのプライベートリポジトリを依存関係に含んでいます。

多くの方法と投稿を試しましたが、どれもうまくいきません。以下は、私がやっていることです。

npm install git+https://github.com/myusername/mygitrepository.git

は、package.json に以下のように記述されています。

"dependencies": {
    "repository1name": "git+https://github.com/myusername/repository1.git",
    "repository2name": "git+https://github.com/myusername/repository2.git"
}

正しい方法は何ですか?

どのように解決するのですか?

以下は、私が必要とするすべてのシナリオでうまく機能しました。

"dependencies": {
"GitRepo": "git+https://<token-from-github>:[email protected]/<user>/<GitRepo>.git"
}