socket.io
Słuchaj wydarzeń
Szukaj…
Słuchanie wewnętrznych i niestandardowych zdarzeń:
Server Syntax
var io = require('socket.io')(80);
io.on('connection', function (mysocket) {
//custom event called `private message`
mysocket.on('private message', function (from, msg) {
console.log('I received a private message by ', from, ' saying ', msg);
});
//internal `disconnect` event fired, when a socket disconnects
mysocket.on('disconnect', function () {
console.log('user disconnected');
});
});
Client syntax
:
var mysocket = io('http://example.com');
mysocket.on('private message', function (data) {
console.log(data);
});
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow