1.0.1 • Published 2 years ago

print-registry v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

print-registry

Print the configured npm registry URL for a given scope to terminal. A thin CLI wrapper around registry-url by Sindre Sorhus.

Usage

$ print-registry --help

  Print the configured npm registry URL for a given scope

  Usage
    $ print-registry <scope>

   Options
     --json     Output registry info as a JSON object
     --help, -h Show this help text

  Examples
    $ print-registry
    https://registry.npmjs.org/

     $ print-registry @myco
    https://npm.myco.com/

     $ print-registry --json
    {"url":"https://registry.npmjs.org/"}
# .npmrc
registry = 'https://custom-registry.com/'
npx print-registry
# output: 'https://custom-registry.com/'

It can also retrieve the registry URL associated with an npm scope.

# .npmrc
@myco:registry = 'https://custom-registry.com/'
npx print-registry @myco

# output: 'https://custom-registry.com/'

If the provided scope is not in the user's .npmrc file, then print-registry will check for the existence of registry, or if that's not set, fallback to the default npm registry.

License

MIT © Espen Hovlandsdal

1.0.1

2 years ago

1.0.0

2 years ago