7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Bunでプライベートレジストリからnpmパッケージをインストールする方法

Last updated at Posted at 2023-08-09

2024-07-04追記

Bum v1.1.18で.npmrcがサポートされました :tada:

バージョン

  • Bun v0.7.3

問題

Bunは.npmrcに対応していないので別途設定をしないとプライベートレジストリからnpmパッケージをインストールすることができない。

対応方法

プロジェクトルートにbunfig.tomlまたはグローバルに適用させたい場合は$HOME/.bunfig.tomlを作成する。

bunfig.toml
[install.scopes]
"@my-org-name" = { token = "your_token", url = "https://npm.pkg.github.com" }

参考

7
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?