I would suggest using Socket.IO
Server code
var io = require('socket.io').listen(80); // initiate socket.io server io.sockets.on('connection', function (socket) { socket.emit('news', { hello: 'world' }); // Send data to client // wait for the event raised by the client socket.on('my other event', function (data) { console.log(data); }); });
and client side
<script src="/socket.io/socket.io.js"></script> <script> var socket = io.connect('http://localhost'); </script>
Alternatively, you can use a router function that calls some function on a specific request from a client
var server = connect() .use(function (req, res, next) { var query; var url_parts = url.parse(req.url, true); query = url_parts.query; if (req.method == 'GET') { switch (url_parts.pathname) { case '/somepath':
And a fire AJAX request using jQuery
$.ajax({ type: 'get', url: '/somepath', success: function (data) {
Salman
source share