The default registry is registry.npmjs.org. To change it globally, set it in bunfig.toml:
bunfig.toml
[install]# set default registry as a stringregistry = "https://registry.npmjs.org"# set a tokenregistry = { url = "https://registry.npmjs.org", token = "123456" }# set a username/passwordregistry = "https://username:password@registry.npmjs.org"
To configure a private registry scoped to a particular organization:
bunfig.toml
[install.scopes]# registry as string"@myorg1" = "https://username:password@registry.myorg.com/"# registry with username/password# you can reference environment variables"@myorg2" = { username = "myusername", password = "$NPM_PASS", url = "https://registry.myorg.com/" }# registry with token"@myorg3" = { token = "$npm_token", url = "https://registry.myorg.com/" }