Wednesday, 15 May 2013

Node.js 0.10.6 / 0.11.2 Beta

Node.js screenshot 1Node.js's goal is to provide an easy way to build scalable network programs. Node.js communicates to the operating system (via epoll, kqueue, /dev/poll, or select) that it should be notified when a new connection is made, after which it goes to sleep.

If someone new connects, then it executes the callback. Each connection is only a small heap allocation.
What's New in This Release: [ read full changelog ]

· module: Deprecate require.extensions (isaacs)
· stream: make Readable.wrap support objectMode, empty streams (Daniel Moore)
· child_process: fix handle delivery (Ben Noordhuis)
· crypto: Fix performance regression (isaacs)
· src: DRY string encoding/decoding (isaacs)

0 comments:

Post a Comment