Unix and Linux Discussions Tagged with config |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
6,627 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
32,678 |
Programming |
|
|
|
2 |
3,787 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
21,388 |
SCO |
|
|
|
0 |
7,007 |
Linux |
|
|
|
1 |
3,257 |
Shell Programming and Scripting |
|
|
|
4 |
4,688 |
AIX |
|
|
|
4 |
4,329 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
4,224 |
Shell Programming and Scripting |
|
|
|
5 |
2,058 |
Shell Programming and Scripting |
|
|
|
10 |
3,545 |
Shell Programming and Scripting |
|
|
|
7 |
3,272 |
UNIX for Dummies Questions & Answers |
|
|
|
13 |
10,948 |
Shell Programming and Scripting |
|
|
|
8 |
10,803 |
Shell Programming and Scripting |
|
|
|
1 |
8,028 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,328 |
Software Releases - RSS News |
|
|
|
0 |
1,125 |
Software Releases - RSS News |
|
|
|
0 |
1,484 |
Software Releases - RSS News |
|
|
|
0 |
1,251 |
Software Releases - RSS News |
|
|
|
7 |
13,982 |
Solaris |
|
|
|
1 |
5,309 |
UNIX and Linux Applications |
|
|
|
0 |
1,725 |
Complex Event Processing RSS News |
|
|
|
0 |
3,780 |
Linux |
|
|
|
3 |
4,668 |
Red Hat |
|
|
|
6 |
6,378 |
AIX |
|
|
|
2 |
16,348 |
Ubuntu |
|
|
|
0 |
1,105 |
Software Releases - RSS News |
|
|
|
0 |
1,096 |
Software Releases - RSS News |
|
|
|
0 |
1,040 |
Software Releases - RSS News |
|
|
|
0 |
1,161 |
Software Releases - RSS News |
|
|
|
5 |
2,848 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,107 |
Software Releases - RSS News |
|
|
|
6 |
33,175 |
IP Networking |
|
|
|
0 |
1,750 |
Software Releases - RSS News |
|
|
|
0 |
1,332 |
Software Releases - RSS News |
|
|
|
0 |
1,309 |
Software Releases - RSS News |
|
|
|
0 |
1,535 |
Software Releases - RSS News |
|
|
|
0 |
1,270 |
Software Releases - RSS News |
|
|
|
0 |
1,124 |
Software Releases - RSS News |
|
|
|
0 |
1,137 |
Software Releases - RSS News |
NPM-CONFIG(1) NPM-CONFIG(1)
NAME
npm-config - Manage the npm configuration files
SYNOPSIS
npm config set <key> <value> [-g|--global]
npm config get <key>
npm config delete <key>
npm config list [-l] [--json]
npm config edit
npm get <key>
npm set <key> <value> [-g|--global]
aliases: c
DESCRIPTION
npm gets its config settings from the command line, environment variables, npmrc files, and in some cases, the package.json file.
See npm help 5 npmrc for more information about the npmrc files.
See npm help 7 npm-config for a more thorough discussion of the mechanisms involved.
The npm config command can be used to update and edit the contents of the user and global npmrc files.
Sub-commands
Config supports the following sub-commands:
set
npm config set key value
Sets the config key to the value.
If value is omitted, then it sets it to "true".
get
npm config get key
Echo the config value to stdout.
list
npm config list
Show all the config settings. Use -l to also show defaults. Use --json to show the settings in json format.
delete
npm config delete key
Deletes the key from all configuration files.
edit
npm config edit
Opens the config file in an editor. Use the --global flag to edit the global config.
SEE ALSO
o npm help 5 folders
o npm help 7 config
o npm help 5 package.json
o npm help 5 npmrc
o npm help npm
January 2019 NPM-CONFIG(1)