开发者

What exactly is Node.js and how it is related to YUI3?

I am a web developer writing a lot of code in jquery.

I am trying to learn YUI3 and I notice the 'node' module there. I also heard about something called Node.js. Are the YUI3 node module and Node.js related ?

The official Node.js website does not seems to have much info.

What exactly is Node.js? It is server-side does that mean we can used Node.js instead say PHP ? What kind of applications are being developed using Node.js?

Is it worth for a we开发者_如何学编程b developer to invest time learning this ?


Node.js is actually a JavaScript framework for asynchronous servers. It runs server-side, rather than client-side like the YUI3 widgets library, and, chances are, if you don't need to roll your own high-performance evented sockets/asynchronous HTTP/etc. server and are just looking to write run-of-the-mill websites, then there is no need to learn Node.js.

(that said, Node.js is still pretty cool.)


Node.js is an evented I/O JavaScript server platform. It makes it relatively easy to create things like sockets and quickly handle many concurrent connections.

Node is similar in design to and influenced by systems like Ruby's Event Machine or Python's Twisted. Node takes the event model a bit further—it presents the event loop as a language construct instead of as a library. In other systems there is always a blocking call to start the event-loop. Typically one defines behavior through callbacks at the beginning of a script and at the end starts a server through a blocking call like EventMachine::run(). In Node there is no such start-the-event-loop call. Node simply enters the event loop after executing the input script. Node exits the event loop when there are no more callbacks to perform. This behavior is like browser javascript—the event loop is hidden from the user.

About Node.js


the biggest connection between YUI3 and node.js is yeti

a command-line tool for launching JavaScript unit tests in a browser and reporting the results without leaving your terminal.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜