How to restore/reset npm configuration to default values?

前端 未结 6 852
孤街浪徒
孤街浪徒 2020-12-04 09:32

I have played with npm set and npm config set for several times, now I want to reset to default values (a kind of factory reset).

D

相关标签:
6条回答
  • 2020-12-04 09:49

    For what it's worth, you can reset to default the value of a config entry with npm config delete <key> (or npm config rm <key>, but the usage of npm config rm is not mentioned in npm help config).

    Example:

    # set registry value
    npm config set registry "https://skimdb.npmjs.com/registry"
    # revert change back to default
    npm config delete registry
    
    0 讨论(0)
  • 2020-12-04 09:52

    Config is written to .npmrc files so just delete it. NPM looks up config in this order, setting in the next overwrites the previous one. So make sure there might be global config that usually is overwritten in per-project that becomes active after you have deleted the per-project config file. npm config list will allways list the active config.

    1. npm builtin config file (/path/to/npm/npmrc)
    2. global config file ($PREFIX/etc/npmrc)
    3. per-user config file ($HOME/.npmrc)
    4. per-project config file (/path/to/my/project/.npmrc)
    0 讨论(0)
  • 2020-12-04 10:00

    If it's about just one property - let's say you want to temporarily change some default, for instance disable CA checking: you can do it with

    npm config set ca ""

    To come back to the defaults for that setting, simply

    npm config delete ca

    To verify, use npm config get ca.

    0 讨论(0)
  • 2020-12-04 10:02

    npm config edit

    Opens the config file in an editor. Use the --global flag to edit the global config. now you can delete what ever the registry's you don't want and save file.

    npm config list will display the list of available now.

    0 讨论(0)
  • 2020-12-04 10:06

    To reset user defaults

    Run this in the command line (or git bash on windows):

    echo "" > $(npm config get userconfig)
    npm config edit
    

    To reset global defaults

    echo "" > $(npm config get globalconfig)
    npm config --global edit
    

    If you need sudo then run this instead:

    sudo sh -c 'echo "" > $(npm config get globalconfig)'
    
    0 讨论(0)
  • 2020-12-04 10:16

    If you run npm config edit, you'll get an editor showing the current configuration, and also a list of options and their default values.

    But I don't think there's a 'reset' command.

    0 讨论(0)
提交回复
热议问题