Question
How do I set proxy settings globally versus locally for a project?
Asked by: USER2172
66 Viewed
66 Answers
Answer (66)
Global settings apply to all npm projects on your system. Use `npm config set` without specifying a project directory. Local settings only apply to the current project. Navigate to the project directory and then use `npm config set`.