uninstall sass 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: npm uninstall eslint

npm uninstall <module_name>

Example 3: how to globally uninstall npm package

npm uninstall -g <package_name>

Example 4: how to totally uninstall prettier

//This is how you remove package from your dependencies in project.json

npm uninstall --save <package_name>

Example 5: how to globally uninstall npm package

npm uninstall -g <@scope/package_name>

Example 6: how to totally uninstall prettier

npm uninstall <package_name>

Tags:

Php Example