blob: 48f7dee79a1695c92da6a2410dd90a73e129e4b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
name: Configure a private registry for an organization scope with bun install
---
Bun does not read `.npmrc` files; instead private registries are configured via `bunfig.toml`. 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](/docs/cli/run#environment-variables) for more information.
```toml#bunfig.toml
[install.scopes]
"@myorg3" = { token = "$npm_token", url = "https://registry.myorg.com/" }
```
---
See [Docs > Package manager](/docs/cli/install) for complete documentation of Bun's package manager.
|