search
HomeWeb Front-endJS TutorialIntroduction to socket.io learning tutorial in node.js (3)

This article introduces you to the relevant information of socket.io in more depth. The basic tutorials and applications of socket.io have been introduced before. This article introduces the use of socket.io in more depth. Friends who need it You can use it as a reference, let’s take a look below.

Preface

socket.io provides real-time two-way communication based on events. This article introduces socket.io in depth. Let’s take a look. Detailed content.

Static files<br>

socket.io will provide socket.io.min through the socket.io-client package by default. js and socket.io.js.map download<br>

Run the instance app.js

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app)

app.listen(3000);

Browser access http://localhost:3000/socket.io/socket.io. js can load compressed source code, visit http://localhost:3000/socket.io/socket.io.js.map to load sourcemap

We can change this behavior

Disable socket.io.js download<br>

#Method 1: Pass in the control parameter serveClient value false during instantiation

let io = require(&#39;socket.io&#39;)(app, { 
 serveClient: false
})

Method 2: Call the function serverClient

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)() 
io.serveClient(false) 
io.listen(app) // 或者io.attach(app)

If the service has been boundhttp.Server before calling the function, this method will not work

After disabling it, accessing again will prompt{" code":0,"message":"Transport unknown"}

Modify the static file path<br>

socket. The io.js path can be changed, its default path is /socket.io.

Pass parameters during instantiation

let io = require(&#39;socket.io&#39;)(app, { 
 path: &#39;/io&#39;
})

Call function path

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)() 
io.path(&#39;/io&#39;) 
io.listen(app)

If the service has been bound before calling the functionhttp.Server, this method will Not working

Security Strategy<br>

socket.io provides two security strategies

allowRequest<br>

The function allowRequest has two parameters. The first parameter is the received handshake packet (http.request) object, which is used as the basis for judgment, success), err is an error object, success is boolean, false means preventing the establishment of a connection

The front-end request brings the token

let socket = io(&#39;http://localhost:3000?token=abc&#39;) 
socket.on(&#39;connect&#39;, () => { 
 console.log(&#39;connect&#39;)
})
socket.on(&#39;connect_error&#39;, err => { 
 socket.disconnect()
 console.log(&#39;connect_error&#39;, err)
})

The back-end allowRequest determines whether to continue based on the token

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app, { 
 allowRequest: (req, cb) => {
 if (req._query && req._query.token === &#39;abc&#39;) return cb(null, true)
 cb(null, false)
 }
});

origins<br>

You can limit the source

1. Restrict the source when instantiating

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app, { 
 origins: &#39;http://localhost:3000&#39;
})

2.The origins function sets the source<br>

origins function has two forms<br>

##origins(string): Set the running source<br>

origins(string, fn (err, success)): Determine whether the source is allowed through the function

io.origins(&#39;http://localhost:*&#39;)

io.origins((origin, cb) => { 
 if (origin === &#39;http://localhost:3000/&#39;) return cb(null, true)
 cb(null, false)
})

Namespace<br>

The namespace is used For server/client connection isolation, in some places, the namespace is also called a channel. The following examples illustrate its significance

We need to implement a collaborative application, which has two functions:

  • Collaborative editing: multiple users can edit a document at the same time

  • Message: Users can send messages between users

    <br>

Use socket.io to implement this application, which has the following forms

1. Completely independent: There is an independent service for collaborative editing

edit.socket.test, and an independent service for the message system message.socket.test

let editSocket = io(&#39;edit.socket.test&#39;) 
let messageSocket = io(&#39;message.socket.test&#39;)

2 , Namespace: Only run an independent service, isolate through namespace

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app) 
let editServer = io.of(&#39;/edit&#39;) 
let messsageServer = io.of(&#39;/message&#39;) 
editServer.on(&#39;connection&#39;, socket => { 
 //编辑相关
})
messsageServer.on(&#39;connection&#39;, socket => { 
 /消息相关
})
let editSocket = io(&#39;socket.test/edit&#39;) 
let messageSocket = io(&#39;socket.test/message&#39;)

3. Event name convention: Isolate by adding event name

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app)

io.on(&#39;connection&#39;, socket => { 
 //编辑相关
 io.emit(&#39;edit:test&#39;)
 io.on(&#39;edit:test&#39;, data => {

 })
 //消息相关
 io.emit(&#39;message:test&#39;)
 io.on(&#39;message:test&#39;, data => {

 })
}

Invasiveness of the program through event name convention It is too large and is not conducive to splitting and reorganization, so it is not recommended. The completely independent mode requires the use of two socket connections, which wastes the number of concurrent connections allowed by the browser and consumes more server resources. Using namespaces can achieve good isolation without wasting resources.

Default namespace<br>

The namespace with the path / is automatically bound to the namespace with path / when socket.io is instantiated

let app = require(&#39;http&#39;).createServer() 
let io = require(&#39;socket.io&#39;)(app)

io.sockets // io.of(&#39;/&#39;).sockets 
io.emit // 代理io.of(&#39;/&#39;).emit, 类似函数有&#39;to&#39;, &#39;in&#39;, &#39;use&#39;, &#39;send&#39;, &#39;write&#39;, &#39;clients&#39;, &#39;compress&#39;

Middleware<br>## The namespace of socket.io registers the middleware through use. After the middleware successfully establishes a connection between the client and the server, Called once before the connet event is dispatched.

Use middleware data verification

io.use((socket, next) => { 
 if (socket.request.headers.cookie) return next()
 next(new Error(&#39;Authentication error&#39;))
})

Use middleware to extract or convert data

io.use((socket, next) => {

getInfo(socket.request .query.id, (err, data) => { if (err) return next(err) socket.custom = data next() }) })<br>

Comparison with allowRequest

<br>allowRequest can perform some verification and extraction, why do we need middleware?

    allowRequest passes in the http.request instance, and The middleware enters and exits the data socket instance. The socket instance contains the request instance and has more information
  • Middleware directly supports multiple asynchronous process nesting, while allowRequest needs to be implemented by yourself
  • <br>

Comparison with connection event

<br>The connection event is also passed into the socket, and can also be used for numerical verification and extraction. Why is there a need for an intermediate event? Middleware?

    Middleware directly supports nesting of multiple asynchronous processes, while allowRequest needs to be implemented by yourself
  • 中间件成功后到connection事件发送成功前,socket.io还做了一些工作,比如把socket实例添加到connected对象中,加入聊天室等。如果因为权限中断连接,在中间件中处理更省资源.<br>

聊天室<br>

聊天室是对当前连接的socket集合根据特定规则进行归组,方便群发消息。可以类比QQ群的概率.

socket.join(&#39;room name&#39;) //进入 
socket.leave(&#39;room name&#39;) //退出
io.to(&#39;some room&#39;).emit(&#39;some event&#39;) // io.to与io.in同义,向某个聊天室的所有成员发送消息

默认聊天室<br>

每个socket在连接成功后会自动创建一个默认个聊天室,这个聊天室的名字是当前socket的id,可以通过默认聊天室实现向特定用户发送消息

socket.on(&#39;say to someone&#39;, (id, msg) => { 
 socket.broadcast.to(id).emit(&#39;my message&#39;, msg)
})

消息发送<br>

应答消息<br>

普通消息不需要回应,而应答消息提供了应答机制

io.on(&#39;connection&#39;, socket => { 
 socket.emit(&#39;an event&#39;, { some: &#39;data&#39; }) //普通消息

 socket.emit(&#39;ferret&#39;, &#39;tobi&#39;, function (data) { //应答消息
 console.log(data); // data will be &#39;woot&#39;
 })
})

<br>

socket.on(&#39;ferret&#39;, (name, fn) => { 
 fn(&#39;woot&#39;)
})

压缩<br>

socket.compress(true)启用压缩,调用后当前连接的所有数据在传递给客户端前都会进行压缩

volatile标志<br>

socket.io在正常情况下对发送的消息进行追踪,确保消息发送成功,而设置volatile后发送消息,socket.io不会对消息追踪,消息可能丢失

分类

// 客户端发送消息
socket.emit(&#39;hello&#39;, &#39;can you hear me?&#39;, 1, 2, &#39;abc&#39;);

// 向所有连接的客户端(除了自己)发送消息
socket.broadcast.emit(&#39;broadcast&#39;, &#39;hello friends!&#39;);

// 向game聊天室发送消息,自己不算
socket.to(&#39;game&#39;).emit(&#39;nice game&#39;, "let&#39;s play a game");

// 同时向game1和game2聊天室发送消息,自己不算
socket.to(&#39;game1&#39;).to(&#39;game2&#39;).emit(&#39;nice game&#39;, "let&#39;s play a game (too)");

// 向game聊天室的所有人发送消息
io.in(&#39;game&#39;).emit(&#39;big-announcement&#39;, &#39;the game will start soon&#39;);

// 发送消息到<socketid>客户端
socket.to(<socketid>).emit(&#39;hey&#39;, &#39;I just met you&#39;);
// 发送应答消息
socket.emit(&#39;question&#39;, &#39;do you think so?&#39;, function (answer) {});

The above is the detailed content of Introduction to socket.io learning tutorial in node.js (3). For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node.js gm是什么node.js gm是什么Jul 12, 2022 pm 06:28 PM

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

一文解析package.json和package-lock.json一文解析package.json和package-lock.jsonSep 01, 2022 pm 08:02 PM

本篇文章带大家详解package.json和package-lock.json文件,希望对大家有所帮助!

怎么使用pkg将Node.js项目打包为可执行文件?怎么使用pkg将Node.js项目打包为可执行文件?Jul 26, 2022 pm 07:33 PM

如何用pkg打包nodejs可执行文件?下面本篇文章给大家介绍一下使用pkg将Node.js项目打包为可执行文件的方法,希望对大家有所帮助!

分享一个Nodejs web框架:Fastify分享一个Nodejs web框架:FastifyAug 04, 2022 pm 09:23 PM

本篇文章给大家分享一个Nodejs web框架:Fastify,简单介绍一下Fastify支持的特性、Fastify支持的插件以及Fastify的使用方法,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

手把手带你使用Node.js和adb开发一个手机备份小工具手把手带你使用Node.js和adb开发一个手机备份小工具Apr 14, 2022 pm 09:06 PM

本篇文章给大家分享一个Node实战,介绍一下使用Node.js和adb怎么开发一个手机备份小工具,希望对大家有所帮助!

图文详解node.js如何构建web服务器图文详解node.js如何构建web服务器Aug 08, 2022 am 10:27 AM

先介绍node.js的安装,再介绍使用node.js构建一个简单的web服务器,最后通过一个简单的示例,演示网页与服务器之间的数据交互的实现。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.