Bower主要注册网址是什么?
我们试图设置Bower首先使用我们的注册表,然后再使用“官方”Bower注册表。
我们根据[bower / registry] 1中公开的终端创建了我们自己的小Bower注册表。效果很好。
基于this doc,看起来我们需要创建一个带有一系列注册表的.bowerrc文件,例如
{
"registry": {
"search": [
"http://myCustomRegistry/api",
"theMainBowerRegistry"
]
}
}
使用我的自定义注册表工作正常,但我找不到主Bower注册表的URL。任何人吗?
答案 0 :(得分:12)
默认注册网址为=> https://bower.herokuapp.com
答案 1 :(得分:7)
https://twitter.com/bower/status/908359136601133056
参见解释https://gist.github.com/sheerun/c04d856a7a368bad2896ff0c4958cb00
答案 2 :(得分:2)
实际上,它只是https://bower.herokuapp.com。 /packages
是REST API路由的一部分,它会在您的Bower请求中创建冗余的URL段(例如https://bower.herokuapp.com/packages/search/bootstrap`)。
答案 3 :(得分:2)
现在的默认注册表是https://raw.githubusercontent.com/bower/components/1.0.0,适用于2017年的任何人。在我的.bowerrc文件中输入此内容解决了我的ECONNRESET错误。 Bower离开了它用于Github的herokuapp存储库。
Twitter上描述此举动的Bower链接链接如下。