How to completely remove node.js from Windows

前端 未结 8 1609
無奈伤痛
無奈伤痛 2020-11-22 01:37

I uninstalled my previous version of node.js (0.8.11) and downloaded the latest, 0.10.24 from the node.js website and installed it. However, after running node --versi

8条回答
  •  醉梦人生
    2020-11-22 02:27

    How to remove Node.js from Windows:

    1. Take a deep breath.

    2. Run npm cache clean --force

    3. Uninstall from Programs & Features with the uninstaller.

    4. Reboot (or you probably can get away with killing all node-related processes from Task Manager).

    5. Look for these folders and remove them (and their contents) if any still exist. Depending on the version you installed, UAC settings, and CPU architecture, these may or may not exist:

      • C:\Program Files (x86)\Nodejs
      • C:\Program Files\Nodejs
      • C:\Users\{User}\AppData\Roaming\npm (or %appdata%\npm)
      • C:\Users\{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache)
      • C:\Users\{User}\.npmrc (and possibly check for that without the . prefix too)
      • C:\Users\{User}\AppData\Local\Temp\npm-*
    6. Check your %PATH% environment variable to ensure no references to Nodejs or npm exist.

    7. If it's still not uninstalled, type where node at the command prompt and you'll see where it resides -- delete that (and probably the parent directory) too.

    8. Reboot, for good measure.

提交回复
热议问题