How to run older versions of node.js on windows

node.js, nvm, windows

Solution

`nvm` is suited for linux environments. It requires `HOME` variable to be set where it will put the different node versions. For windows there is `nvmw`.

Similarly an alternative to `nvm` is `n`. For which the windows version is `nodist`.

See this useful blog.

Problem

I want to install `v0.8.6` of node along with `v0.10`. How can I install NVM on windows And use it to install older node

Original source