Basic Application of socket. io tutorial (2) socket. io tutorial
Preface
Socket. IO supports timely, bidirectional, and event-based communication. It can work on every platform, every browser, and every device, with the same reliability and speed.
- Real-time analysis: pushes data to clients, which are expressed as real-time counters, charts, or log customers.
- Real-time communication and chat: only a few lines of code can be written into a Socket. IO "Hello, World" chat application.
- Binary stream transmission: Starting from Version 1.0, Socket. IO supports binary file transmission in any form, such as images, videos, and audios.
- Document merging: Allows multiple users to edit a document at the same time and view the modifications made by each user.
Connect the server to the client
Socket. io provides APIs for both the server and client.
The socket. io Server must be bound to an http. Server instance.
Bind http. Server
1. Implicit binding
Call the listen or attach function for implicit binding after passing in a port or instantiating during instantiation. Socket. io is instantiated and listened to internallyhttp.Server
Input Port during instantiation
let io = require('socket.io')(3000)
Bind directly through the listen or attach function. Listen and attach are synonymous
let io = require('socket.io') io.listen(3000) // io.attach(3000)
2. Display binding
You can manually specify http. Server
Bind during instantiation
let server = require('http').Server(); let io = require('socket.io')(server)server.listen(3000)
Bind through listen or attach
let server = require('http').Server(); let io = require('socket.io')()io.listen(server) // io.attach(server)server.listen(3000)
You can bind http frameworks such as express or koa.
Express
let app = require('express') let server = require('http').Server(app) let io = require('socket.io')(server)app.listen(3000)
Koa
let app = require('koa')() let server = require('http').Server(app.callback())let io = require('socket.io')(server)app.listen(3000)
Listener connection status
When the connection between the server and the client is successful, the server will listen to the connection and connect events (connection is synonymous with connect), and the client will listen to the connect event, when the connection is disconnected, both the socket and client corresponding to the client will listen to the disconnect event.
Server code
let server = require('http').Server() let io = require('socket.io')(server)server.listen(3000); io.on('connection', socket => { console.log('connect') socket.on('disconnect', () => { console.log('disconnect') }) socket.disconnect()})
Print after running
connect disconnect
Client code
let socket = io('http://localhost:3000') socket.on('connect', () => { console.log('connect')})socket.on('disconnect', () => { console.log('disconnect')})
Print after running
connect disconnect
Transmit data
The socket of the server and the client is an associated EventEmitter object. Events distributed by the socket of the client can be received by the socket of the server, and events distributed by the socket of the server can also be accepted by the client. Based on this mechanism, two-way communication can be achieved.
Now we simulate a situation where the client continuously sends a random number. When the random number is greater than 0.95, the server sends a warning and warning message to the client after one second delay.
Server code
let server = require('http').Server() let io = require('socket.io')(server)server.listen(3000); io.on('connection', socket => { socket.on('random', value => { console.log(value) if (value > 0.95) { if (typeof socket.warning === 'undefined') socket.warning = 0 setTimeout(() => { socket.emit('warn', ++socket.warning) }, 1000) } })})
The socket object can be used to store status information and custom data, suchsocket.warning
Client code
let socket = io('http://localhost:3000') let interval = setInterval(() => { socket.emit('random', Math.random())}, 500)socket.on('warn', count => { console.log('warning count: ' + count)})socket.on('disconnect', () => { clearInterval(interval)})
Transmission stream
Socket. io can process streams
Server code
io.on('connection', function (socket) { let stream = ss.createStream() ss(socket).emit('script', stream) fs.createReadStream(__filename).pipe(stream)})
Client code
let socket = io('http://localhost:3000') ss(socket).on('script', stream => { let buffer = '' stream.on('data', data => { buffer += data.toString() }) stream.on('end', () => { console.log(buffer) })})
Summary
The above is all the content of this article. I hope the content of this article will help you in your study or work. If you have any questions, please leave a message, thank you for your support.