uninstall dev dependency npm code example
Example 1: uninstall dependencies npm
npm uninstall <package_name>
//Example
npm uninstall mongoose
//A tip ctrl+c helps to terminate a job in terminal
Example 2: uninstalling npm modules from node.js
Simply use below command in cmd and change module_name with different modules
>npm uninstall <module_name>
Example 3: npm remove dev dependencies from node_modules
npm uninstall --save-dev package_name