I've installed Jitsu on Windows by running the commend:
npm install jitsu -g
I ran the command in CMD.ece with administrator rights. When first installed and got to the password phase, I get the following error:
timers.js:96
if(!process.lsteners('uncaughtException').length) throw e:
TypeError: Object #<MuteStrea< has no method 'getWindowSize'
This is only part of the error, it's pretty long and writing it all char by char will take an hour.
The error happens again when I try the recover the password. Although the confirmation of my account went ok, when I wanted to rest the password, I get an email, ran the reset passowrd command ('users forgot'), but again the same error arises.
I use Nodjitsu PaaS.
Need you help. Thanks.
Basically, what's most likely happening here is that the version of the readline
module installed on your system requires node >=0.6.20 (so that MuteStream.getWindowSize exists), and somehow npm was able to mismatch everything. You can fix this by ensuring that node and jitsu are both up-to-date. :)
TL;DR: Update node.js to 0.8.x.