Last active
February 27, 2020 16:17
-
-
Save vaderj/0daa2e6344fe6036eeb2aace5b753858 to your computer and use it in GitHub Desktop.
#node.js #npm cheatsheet NPM & Node.js cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#If NPM is throwing errors about permissions issues: | |
npm config set unsafe-perm=true | |
# error : "Error: EPERM: operation not permitted, rename" ... includes cache clear twice | |
npm cache clean --force | |
npm install -g npm@latest --force | |
npm cache clean --force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment