Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the default (official?) Bower registry URL?

Tags:

bower

What is the main Bower registry URL?

We're trying to set up Bower to use our registry first, then the "official" Bower registry second.

We've created our own little Bower registry based on the endpoints exposed in [bower/registry]1. Works great.

Based on this doc, it looks like we need to create a .bowerrc file with an array of registries like

{
  "registry": {
    "search": [
      "http://myCustomRegistry/api",
      "theMainBowerRegistry"
    ]
  }
}

Works fine for use my custom registry, but I can't find the URL for the main Bower registry. Anyone?

like image 712
Evan Cowden Avatar asked Sep 28 '13 16:09

Evan Cowden


2 Answers

The default registry URL is => https://bower.herokuapp.com

like image 78
Sindre Sorhus Avatar answered Sep 21 '22 17:09

Sindre Sorhus


Now it is https://registry.bower.io

https://twitter.com/bower/status/908359136601133056

See the explanation https://gist.github.com/sheerun/c04d856a7a368bad2896ff0c4958cb00

like image 25
AndyTheEntity Avatar answered Sep 20 '22 17:09

AndyTheEntity