開發node 幾乎希望實做comet ,而socket.io 這個前後台整合模組,在實做comet 上十分推薦的一個外掛模組。
開發node之前,首先並重npm ,因為要使用到模組(module)的加持。畢竟在node 開發實際應用商品,很多坑洞都會導致整個node 程序crash,建議直接使用第三方模組開發,降低問題的發生率。
首先,在開發node 幾乎希望實做comet ,而socket.io 這個前後台整合模組,在實做comet 上十分推薦的一個外掛模組。
安裝socket.io
npm install socket.io [-g]
如果沒有看到紅字,表示安裝順利完成!
試用socket.io
node.JS 程式
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(80);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
Client 程式
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>