| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | .TH "NPM\-CONFIG" "1" "August 2021" "" "".SH "NAME"\fBnpm-config\fR \- Manage the npm configuration files.SS Synopsis.P.RS 2.nfnpm config set <key> <value> [\-g|\-\-global]npm config get <key>npm config delete <key>npm config list [\-l] [\-\-json]npm config editnpm get <key>npm set <key> <value> [\-g|\-\-global]aliases: c.fi.RE.SS Description.Pnpm gets its config settings from the command line, environmentvariables, \fBnpmrc\fP files, and in some cases, the \fBpackage\.json\fP file\..PSee npm help npmrc for more information about the npmrc files\..PSee npm help config for a more thorough discussion of the mechanismsinvolved\..PThe \fBnpm config\fP command can be used to update and edit the contentsof the user and global npmrc files\..SS Sub\-commands.PConfig supports the following sub\-commands:.SS set.P.RS 2.nfnpm config set key value.fi.RE.PSets the config key to the value\..PIf value is omitted, then it sets it to "true"\..SS get.P.RS 2.nfnpm config get key.fi.RE.PEcho the config value to stdout\..SS list.P.RS 2.nfnpm config list.fi.RE.PShow all the config settings\. Use \fB\-l\fP to also show defaults\. Use \fB\-\-json\fPto show the settings in json format\..SS delete.P.RS 2.nfnpm config delete key.fi.RE.PDeletes the key from all configuration files\..SS edit.P.RS 2.nfnpm config edit.fi.RE.POpens the config file in an editor\.  Use the \fB\-\-global\fP flag to edit theglobal config\..SS See Also.RS 0.IP \(bu 2npm help folders.IP \(bu 2npm help config.IP \(bu 2npm help package\.json.IP \(bu 2npm help npmrc.IP \(bu 2npm help npm.RE
 |