www.LinuxHowtos.org
NPM\-UNINSTALL
Section: (1)Updated: December 2016
Index Return to Main Contents
NAME
npm-uninstall - Remove a packageSYNOPSIS
-
npm uninstall [<@scope>/]<pkg>[@<version>]... [-S|--save|-D|--save-dev|-O|--save-optional] aliases: remove, rm, r, un, unlink
DESCRIPTION
This uninstalls a package, completely removing everything npm installed on its behalf. Example:-
npm uninstall sax
-
- *
- -S, --save: Package will be removed from your dependencies.
- *
- -D, --save-dev: Package will be removed from your devDependencies.
- *
-
-O, --save-optional: Package will be removed from your optionalDependencies.
-
npm uninstall sax --save npm uninstall @myorg/privatepackage --save npm uninstall node-tap --save-dev npm uninstall dtrace-provider --save-optional
SEE ALSO
-
- *
- npm help prune
- *
- npm help install
- *
- npm help 5 folders
- *
- npm help config
- *
- npm help 7 config
- *
-
npm help 5 npmrc