Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to install multiple instances of node.js with the windows .msi?

Tags:

node.js

I've tried to install multiple versions of node.js using the .MSI installer but it seems that the second version uninstall the previous one.

like image 378
Maverick Avatar asked Apr 15 '13 18:04

Maverick


2 Answers

I found this on github and solved my problem ...

https://github.com/marcelklehr/nodist

like image 190
Maverick Avatar answered Oct 25 '22 14:10

Maverick


You could install multiple copies, but you'd first need to rename the old binaries. Although at this point I'd suggest just downloading the latest binary and place it inside the same directory (renaming what you need).

Not sure how this will affect NPM as it will use what ever binary is node.exe.

like image 40
travis Avatar answered Oct 25 '22 13:10

travis