You can remove a package from your node_modules directory using npm uninstall <package>
:
npm uninstall lodash
To remove it from the dependencies in package.json
, you will need to use the save flag:
npm uninstall --save lodash
Last modified December 29, 2015 Found a typo? Send a pull request!