Nodejitsu on Windows

I just started playing with Node.js and tried to get Nodejitsu to work on my system (Windows 7, Node version 0.8.15)

I installed Jitsu using the "npm install jitsu -g" command, but besides trying to execute jitsu, users confirm or expand the return:

'jitsu' is not recognized as an internal or external command, a valid program or batch file.

I understand that I most likely need to add the jitsu installation location to my path, but I'm not sure where the jitsu is installed.

Help evaluate. Thanks

+4
source share
1 answer

during normal installation of Node.js in the windows you will find the npm modules located in

C:\Program Files\nodejs\node_modules\npm\bin 

or

 C:\Users\user\AppData\Roaming\npm\jitsu 

You need to set the PATH environment variable to the correct path

Then you can use Nodejitsu :)

+3
source

All Articles