uninstall current node_modules code example
Example 1: remove node modules command
rm -rf node_modules/
npm install
Example 2: uninstall node package
npm uninstall <package_name>
rm -rf node_modules/
npm install
npm uninstall <package_name>