Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のクライアント、より具体的には、サイトに既にいる残りの訪問者にブロードキャストせずに、アプリに接続したばかりのクライアントにメッセージを送信するにはどうすればよいですか?
io.sockets.on('connection', function(client) { });
新しい訪問者が接続するたびに、全員にブロードキャストしているようです。
var io = require('socket.io').listen(80); io.sockets.on('connection', function (socket) { socket.emit('greetings', { greeting:'hello, new visitor' }); socket.on('greetingFromVisitor', function (data) { console.log(data); }); });