mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
31 lines
496 B
Plaintext
31 lines
496 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nrm
|
|
|
|
> npm registry manager.
|
|
> Helps to easily switch between different npm registries.
|
|
> More information: <https://github.com/Pana/nrm#usage>.
|
|
|
|
- List all registries:
|
|
|
|
`nrm ls`
|
|
|
|
- Change to a particular registry:
|
|
|
|
`nrm use {{registry}}`
|
|
|
|
- Show the response time for all registries:
|
|
|
|
`nrm test`
|
|
|
|
- Add a custom registry:
|
|
|
|
`nrm add {{registry}} {{url}}`
|
|
|
|
- Delete a registry:
|
|
|
|
`nrm del {{registry}}`
|