How to completely remove node.js from Windows

How to completely remove node.js from Windows

How to remove Node.js from Windows:

Take a deep breath.

Run npm cache clean --force

Uninstall from Programs & Features with the uninstaller.

Reboot (or you probably can get away with killing all node-related processes from Gestionnaire des tâches).

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-*

Check your %PATH% variable d’environnement to ensure no references to Nodejs or npm exist.

If it’s still not uninstalled, type where node at the invite de commandes and you’ll see where it resides – delete that (and probably the parent directory) too.

Reboot, for good measure.