I am creating a package installer which has nodejs, redis, and socket.io as prerequisites. The problem is that I don't want the developers to install the prerequisites own their own.
I figured out a way of doing that using on mac and ubuntu by including brew install node
for mac
and sudo apt-get install nodejs
, sudo apt-get install npm
I am now looking for a way to install nodejs on window using a command or two. Any Idea? Please.