September 2013
Beginner to intermediate
480 pages
9h 59m
English
Comet is a web model in which a long-held HTTP request allows the server to "push" data from the server to the browser without the need for the browser to make a request explicitly. Comet is known in many different names, Ajax Push, Server Push, Reverse Ajax two-way-web, and so on. In this recipe, we are going to create a simple server that sends or "pushes" its current time to client.
For this example, we will use Node.js and a library called Socket.IO
(http://socket.io/). The dependency can be included in the package.json file or directly installed from npm.
Let's get started.
require statements for Socket.IO, ...Read now
Unlock full access