Node.js v0.6.0 is released
11–20 of 38 posts
Re: Node.js v0.6.0 is released
#12Earlier quoted context omitted.
That's a regression we'll probably have fixed in 0.6.1. Note that I/O read performance is up 35%, from 19.7 mb/s in 0.4 to 26.6 mb/s in 0.6.
Any numbers for node on ARM? I was told that recently v8 releases have had significant performance regressions for ARM devices by a JS dev at a meetup.
If you know that JS dev personally please ask him to file the bug (http://code.google.com/p/v8/issues/entry) or send any information he has about regressions to v8-users mailing list.
I don't think there were any bugs opened recently about perf regressions on ARM devices.
Thanks.
Re: Node.js v0.6.0 is released
#13Direct link to a list of changes you have to make to your codebases: https://github.com/joyent/node/wiki/API-changes-between-v0.4... Question: Since this doesn't look that complex, is anyone working on an automagical translator from 0.4 to 0.6 that people could use?
I think lots of the pain is going to be in the vast collection of third party (npm) modules that need to be updated. Will take a bit before all module authors are up to date.
Re: Node.js v0.6.0 is released
#14I hope it's well optimized for fibonacci algorithms now.
Re: Node.js v0.6.0 is released
#15Re: Node.js v0.6.0 is released
#16Don't use it if you rely on npm. It doesn't work yet.
Re: Node.js v0.6.0 is released
#17"Integrated load balancing over multiple processes."
These two improvements are just the nudge I needed to start tinkering with Node. I've been following along and reading about node almost daily but native windows support and integrated focus on multiple processes make a big difference to me. I can no longer sit on the sidelines.
Thanks for picking me up and shoving me onto the field!
Re: Node.js v0.6.0 is released
#18Next for windows developers is trying to get npm to work. The sheer popularity of unix tooling in the build process means that using node libraries is likely to remain a challenge.
I've played around with Node in Windows and Node without NPM is seriously gimped.
Re: Node.js v0.6.0 is released
#19Re: Node.js v0.6.0 is released
#20"Native Windows support using I/O Completion Ports for sockets." "Integrated load balancing over multiple processes." These two improvements are just the nudge I needed to start tinkering with Node. I've been following along and reading about node almost daily but native windows support and integrated focus on multiple processes make a big difference to me. I can no longer sit on the sidelines. Thanks for picking me…