npm r -S example; npm r -D example
is short hand for npm remove --save anything
and npm remove --save-dev whatever
.
Thanks to this question on Stack Overflow.
npm r -S example; npm r -D example
npm remove --save anything
and npm remove --save-dev whatever
.
Thanks to this question on Stack Overflow.
For further actions, you may consider blocking this person and/or reporting abuse
Shai Almog -
ng-news -
babar ali -
Argho Dev -
Top comments (2)
what do you mean by 'example'?
"example" is just the name of a package. You can use it verbatim because it will most likely not be in your
package.json
. Your packages are sorted by runningnpm remove
even if the package "example" doesn't exist.