How to Uninstall Node.js on a Mac
1. Open the Terminal application. 2. Type the following command to uninstall Node.js: sudo rm -rf /usr/local/bin/node 3. Type the following command to remove the npm configuration files: sudo rm -rf /usr/local/lib/node_modules 4. Type the following command to remove the npm cache: sudo rm -rf ~/.npm 5. Type the following command to remove the npm … Read more