socket io config code example
Example 1: import socket io frontend
<script src="/socket.io/socket.io.js"></script><script> const socket = io('http://localhost');</script>
Example 2: socket io middleware
const express = require('express');
const socketio = require('socket.io');
const port = 3000;
const app = express();
const server = app.listen(port, console.log(`Listening on port ${port}...`));
const io = socketio(server);
io.use((socket, next) => {
if () {
next();
} else {
next(new Error('Connection failed.'));
}
});
io.on('connection', (socket) => {
socket.use((packet, next) => {
const event = packet[0];
const data = packet.slice(1);
if () {
next();
} else {
next(new Error('Failed to emit the event.'));
}
});
socket.on('msg', (data) => {
socket.broadcast.emit('msg', data.msg);
});
});
Example 3: socket io query
const socket = io({
query: { token: 'cde' }
});
io.on('connection', (socket) => {
let token = socket.handshake.query.token;
});
Example 4: node socket.io send
io.on('connect', onConnect);
function onConnect(socket){
socket.emit('hello', 'can you hear me?', 1, 2, 'abc');
socket.broadcast.emit('broadcast', 'hello friends!');
socket.to('game').emit('nice game', "let's play a game");
socket.to('game1').to('game2').emit('nice game', "let's play a game (too)");
io.in('game').emit('big-announcement', 'the game will start soon');
io.of('myNamespace').emit('bigger-announcement', 'the tournament will start soon');
io.of('myNamespace').to('room').emit('event', 'message');
io.to(`${socketId}`).emit('hey', 'I just met you');
socket.emit('question', 'do you think so?', function (answer) {});
socket.compress(false).emit('uncompressed', "that's rough");
socket.volatile.emit('maybe', 'do you really need it?');
socket.binary(false).emit('what', 'I have no binaries!');
io.local.emit('hi', 'my lovely babies');
io.emit('an event sent to all connected clients');
};