npm-config
TLDR
List all config
$ npm config list
Get config value$ npm config get [registry]
Set config value$ npm config set [registry] [https://registry.npmjs.org/]
Delete config$ npm config delete [key]
Edit config file$ npm config edit
List all with defaults$ npm config list -l
Set global config$ npm config set [key] [value] -g
SYNOPSIS
npm config [command] [options]
DESCRIPTION
npm config manages npm configuration. Controls registry, proxy, and other settings.
The command modifies .npmrc files. Per-project or global configuration.
npm config manages settings.
PARAMETERS
COMMAND
Config subcommand.list
Show configuration.get KEY
Get value.set KEY VALUE
Set value.delete KEY
Remove setting.edit
Open editor.--help
Display help information.
CAVEATS
Multiple .npmrc locations. Project overrides global. Credentials stored here.
HISTORY
npm config is the configuration management system for npm behavior customization.


