Skip to content

Instantly share code, notes, and snippets.

@karthikraj-duraisamy
Last active June 29, 2020 17:47
Show Gist options
  • Save karthikraj-duraisamy/63219c0feff3a27c5211f4bd84f06ef4 to your computer and use it in GitHub Desktop.
Save karthikraj-duraisamy/63219c0feff3a27c5211f4bd84f06ef4 to your computer and use it in GitHub Desktop.
----
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