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
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 removeeven if the package "example" doesn't exist.