UNPKG

bun-types

Version:

Type definitions and documentation for Bun, an incredibly fast JavaScript runtime

39 lines (27 loc) 1.31 kB
--- name: Configure a private registry for an organization scope with bun install --- Private registries can be configured using either [`.npmrc`](https://bun.sh/docs/install/npmrc) or [`bunfig.toml`](https://bun.sh/docs/runtime/bunfig#install-registry). While both are supported, we recommend using **bunfig.toml** for enhanced flexibility and Bun-specific options. To configure a registry for a particular npm scope: ```toml#bunfig.toml [install.scopes] # as a string "@myorg1" = "https://username:password@registry.myorg.com/" # as an object with username/password # you can reference environment variables "@myorg2" = { username = "myusername", password = "$npm_pass", url = "https://registry.myorg.com/" } # as an object with token "@myorg3" = { token = "$npm_token", url = "https://registry.myorg.com/" } ``` --- Your `bunfig.toml` can reference environment variables. Bun automatically loads environment variables from `.env.local`, `.env.[NODE_ENV]`, and `.env`. See [Docs > Environment variables](https://bun.sh/docs/runtime/env) for more information. ```toml#bunfig.toml [install.scopes] "@myorg3" = { token = "$npm_token", url = "https://registry.myorg.com/" } ``` --- See [Docs > Package manager](https://bun.sh/docs/cli/install) for complete documentation of Bun's package manager.