Last active
June 29, 2020 17:47
-
-
Save karthikraj-duraisamy/63219c0feff3a27c5211f4bd84f06ef4 to your computer and use it in GitHub Desktop.
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
---- | |
To Remove a package from node-modules | |
---- | |
npm uninstall <package-name> | |
-------------------- | |
---- | |
To Remove a package from node-modules & package.json as well | |
---- | |
npm uninstall -S <package-name> | |
(If it is a dev dependency) | |
npm uninstall -D <package-name> | |
-------------------- | |
---- | |
To Remove a package globally | |
---- | |
npm uninstall -g <package-name> | |
-------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment