socket io client api code example
Example 1: socket.io reconnect example
io.connect('http://localhost', {
'reconnection': true,
'reconnectionDelay': 500,
'reconnectionAttempts': 10
});
Example 2: socket io emit from socket instance or server
socket.emit('message', "this is a test");
socket.broadcast.emit('message', "this is a test");
socket.broadcast.to('game').emit('message', 'nice game');
socket.to('game').emit('message', 'enjoy the game');
socket.broadcast.to(socketid).emit('message', 'for your eyes only');
io.emit('message', "this is a test");
io.in('game').emit('message', 'cool game');
io.of('myNamespace').emit('message', 'gg');
socket.emit();
socket.broadcast.emit();
socket.on();
io.sockets.socket();
io.sockets.emit();
io.sockets.on() ;
Example 3: import socket io frontend
<script src="/socket.io/socket.io.js"></script><script> const socket = io('http://localhost');</script>
Example 4: 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 5: socket io query
const socket = io({
query: { token: 'cde' }
});
io.on('connection', (socket) => {
let token = socket.handshake.query.token;
});