我建议您在侧节点上使用 Socket.io.js。从 http://socket.io/ 安装并下载库。您可以毫无问题地与Apache服务器一起运行它。
首先创建一个节点服务器:
var http = require('http')
, url = require('url')
, fs = require('fs')
, io = require('../')//path to your socket.io lib
, sys = require(process.binding('natives').util ? 'util' : 'sys')
, server;
server = http.createServer(function(req, res){
var path = url.parse(req.url).pathname;
}),
server.listen(8084);//This could be almost any port number
其次,使用以下命令从命令行运行服务器:
node /path/to/your/server.js
第三,使用客户端 js 连接到套接字:
var socket = new io.Socket(null, {port: 8084, rememberTransport: false});
socket.connect();
您必须包括 socket.io lib 客户端。
使用以下命令将数据从客户端发送到节点服务器:
socket.send({data:data});
您的服务器.js还应该具有处理请求的功能:
io.on('connection', function(client){
//action when client connets
client.on('message', function(message){
//action when client sends msg
});
client.on('disconnect', function(){
//action when client disconnects
});
});
有两种主要方法将数据从服务器发送到客户端:
client.send({ data: data});//sends it back to the client making the request
和
client.broadcast({ data: data});//sends it too every client connected to the server