1. Background1. The front end uses vue + vuex + socket.io-client
2. The backend uses node + express + socketio 1. Build a node development environment
Install required dependencies
2. Overview of socket.io usage1. Sending events socket.emit('event name', data => { // data is the data to be transmitted, which can be boolean, string, number, object, etc.}) 2. Listening for events socket.on('Event name when sending', data => { //data sent by the event}) 3. Broadcasting Events // Send to other users (not to yourself) socket.broadcast.emit('event name', data => { // data is the data to be transmitted, which can be boolean, string, number, object, etc.}) 3. Development Process1. Create a socket.js file on the front end to receive socket-related events, as follows // Import socket.io-client import io from 'socket.io-client' // Create a link const socket = io() // Listening socket.on('connect', () => { console.log('Connected to the server successfully!!') }) > =============The middle part is used to listen to the socket events sent by the backend, for example: ===================== // Enter the room socket.on('enter_room', (data) => { // Necessary data can be stored in storage localStorage.setItem('counts', JSON.stringify(data)) store.commit('setData', JSON.parse(localStorage.getItem('data'))) }) // Handle service lost connection socket.on('disconnect', () => { console.log('disconnect') }) 2. Backend related code const app = require('express')() const http = require('http').Server(app) var io = require('socket.io')(http) let onlineUsers = {} let users = [] let onlineCounts = 0 io.on('connection', socket => { // User enters the game socket.on('enter', (data) => // Add user information const sid = socket.id socket.name = data.name // Add a new user if(!onlineUsers.hasOwnProperty(data.name)) { onlineUsers[data.name] = sid onlineCounts++ } if (!users.length) { users.push({ name: onlineUsers[sid] }) } // Current number of clients let clientsCount = io.sockets.server.engine.clientsCount //Send the user list to the current user (corresponding to the front-end monitoring enter_room part of the code) io.emit('enter_room', { role: data.role, users, onlineCounts }) // Send new users to other users (not to themselves) socket.broadcast.emit('user_enter', data.name) }) }) // The backend opens the listening port, and the frontend configures the proxyTable to proxy to the backend server, so that the frontend and backend data can be connected http.listen(port, () => { console.log('Backend server started successfully!!!') }) 4. Release and launch1. Front-end: 1) Install http-server, then connect to the server, enter the server and pull the front-end code of the remote warehouse (usually pulled from the server www directory). If you have not cloned the code, you need to configure the public key on the server before downloading. Public key configuration
After generating the public key, enter the file directory where the public key was generated, copy it to the code hosting platform, and then you can clone the code after adding the public key. 2) Package the front-end code and generate the dist file
3) Enter dist and execute the command to start the front end
4) Front-end access, server address + port number 2. Backend: 1) Just like the front-end (no need to install http-server), after entering the server, pull the front-end code from the remote warehouse (usually pull it from the www directory of the server). If you have not cloned the code, you need to configure the public key on the server before downloading it.
When socket.io is released online, the front end must modify the socket.io proxy address port to the backend port, otherwise it will report 404. The modification location is as follows (here my backend port is 3000) 2. Nginx needs to modify the proxy forwarding address of socket.io, otherwise it will also report 404 Supplement 1.pm2 Common commands
2. Related instructions of nginx in the command line
At this point, following the above steps, you can carry out any type of socket-related development. Go and try it. If you have any questions, please leave a message. This is the end of this article about vue+node+socketio to achieve multi-person interaction and release the entire process online. For more relevant vue socketio to achieve multi-person interaction content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the lock structure in MySQL
>>: Solution to the timeout problem when installing docker-compose with PIP
The specific code of the sliding button made with...
This article describes a proposal for a metadata ...
As the cost of building HTTPS websites decreases,...
IE8 will have multiple compatibility modes . IE pl...
This collection showcases a number of outstanding ...
Preface When using the Deepin user interface, it ...
Introduction Dockerfile build run is a manual ope...
This question originated from a message on Nugget...
Navigation bar creation: Technical requirements: ...
1. Check the kali linux system version Command: c...
1. Native network request 1. XMLHttpRequest (w3c ...
Table of contents Application Scenario Simply put...
Separation of static and dynamic Dynamic requests...
Web page WB.ExecWB control printing method Copy c...
Brief Tutorial This is a CSS3 color progress bar ...