Node v0.5.0 just released
blog.nodejs.org
Node v0.5.0 just released
1–10 of 17 posts
Re: Node v0.5.0 just released
#2Re: Node v0.5.0 just released
#3- add os.getNetworkInterfaces()
- add remoteAddress and remotePort for client TCP connections
I've been waiting for them to push these features out. (yes, I know you already have the address & port if you are a client).
Re: Node v0.5.0 just released
#4eg http://twitter.com/#!/search/nodejs%20unstable
Though I know about the even/odd thing, it seems rather damaging to the platform to be announcing 'unstable' seemingly 'major' releases, don't you think? Why not Alpha? or Beta? or some other common convention? Ugh.
Re: Node v0.5.0 just released
#5I have never seen so much emphasis on the 'unstable' aspect of a software release. eg http://twitter.com/#!/search/nodejs%20unstable Though I know about the even/odd thing, it seems rather damaging to the platform to be announcing 'unstable' seemingly 'major' releases, don't you think? Why not Alpha? or Beta? or some other common convention? Ugh.
Many server systems use this convention as a way of embedding an extra bit of info (stable/unstable) for sys admins.
Many people are using Node to push boundaries in various ways, so they are using the unstable versions. I did this with 0.3, but 0.4 is good enough for the moment.
Re: Node v0.5.0 just released
#6Re: Node v0.5.0 just released
#7I have never seen so much emphasis on the 'unstable' aspect of a software release. eg http://twitter.com/#!/search/nodejs%20unstable Though I know about the even/odd thing, it seems rather damaging to the platform to be announcing 'unstable' seemingly 'major' releases, don't you think? Why not Alpha? or Beta? or some other common convention? Ugh.
Re: Node v0.5.0 just released
#8I would love it if they started adding support for JS1.7 / JS1.8 :(
Re: Node v0.5.0 just released
#9- add child_process.fork - add os.getNetworkInterfaces() - add remoteAddress and remotePort for client TCP connections I've been waiting for them to push these features out. (yes, I know you already have the address & port if you are a client).
Re: Node v0.5.0 just released
#10- add child_process.fork - add os.getNetworkInterfaces() - add remoteAddress and remotePort for client TCP connections I've been waiting for them to push these features out. (yes, I know you already have the address & port if you are a client).
I got too excited about child_process.fork before I read the description. I was imagining it would be like C where I can fork, setup the env and exec. That would probably be tricky and very ugly to implement, though..