Lines Matching full:registry
1 # registry-url []…
3 > Get the set npm registry URL
5 It's usually `https://registry.npmjs.org/`, but [configurable](https://www.npmjs.org/doc/misc/npm-c…
7 Use this if you do anything with the npm registry as users will expect it to use their configured r…
13 $ npm install --save registry-url
21 registry = 'https://custom-registry.com/'
25 const registryUrl = require('registry-url');
28 //=> 'https://custom-registry.com/'
31 It can also retrieve the registry URL associated with an [npm scope](https://docs.npmjs.com/misc/sc…
35 @myco:registry = 'https://custom-registry.com/'
39 const registryUrl = require('registry-url');
42 //=> 'https://custom-registry.com/'
45 …pmrc` file, then `registry-url` will check for the existence of `registry`, or if that's not set, …