链接远程 Registry
Verdaccio 是一个代理,默认链接公共 Registry。
uplinks:
npmjs:
url: https://registry.npmjs.org/
您可以链接多个 Registry,下面的文档将向您介绍一些有用的配置。
使用关联 Scope
使用 .npmrc
访问多个 Registry 的唯一方法是作用域功能,具体如下:
// .npmrc
registry=https://registry.npmjs.org
@mycompany:registry=http://localhost:4873
这种方法是有效的,但有几个缺点:
- 它仅适用于 Scope
- Scope 必须匹配,不允许使用正则表达式
- 一个 Scope 无法从多个 Registry 获取
- 令牌/密码必须在
.npmrc
中定义并签入存储库。
请参阅此处的完整示例。
链接 Registry
链接 Registry 相当简单。 首先,在 uplinks
部分中定义一个新部分。 请注意,这里的顺序无关紧要。
uplinks:
private:
url: https://private.registry.net/npm
... [truncated] ...
'webpack':
access: $all
publish: $authenticated
proxy: private
添加 proxy
部分,定义要代理的 Registry。