Table of Contents
1.What is buffer?
3. Copy Buffer
4. Splice Buffer
5. Intercept Buffer
6. 填充Buffer
7. Buffer工具方法
8. Buffer与String的转换
9. Buffer与Array的对比
Home Web Front-end JS Tutorial What is buffer? Learn more about the buffer module in Nodejs

What is buffer? Learn more about the buffer module in Nodejs

Dec 30, 2021 pm 07:21 PM
nodejs

What is buffer? The following article will give you an in-depth understanding of the buffer module in Nodejs, and introduce the methods of creating, copying, splicing, intercepting, filling Buffers, and converting Buffers and Strings. I hope it will be helpful to everyone!

What is buffer? Learn more about the buffer module in Nodejs

1.What is buffer?

We know that JS has corresponding method APIs for operating strings, arrays, numbers, Boolean values, etc., while in Node, file operations, network communications, database operations, and data transmission are also required. and other capabilities; files are represented in binary form at the storage level, and data transmission in http requests and responses is also transmitted in binary data, so the current JS capabilities alone are not enough, which is why Node## The buffer module is provided in #.

That is: giving NodeJS the ability to manipulate binary data like strings. Buffer is also called

temporary storage area, which is a section of memory that temporarily stores input and output binary data.

In a previous article

Talk about the core module in Nodejs: stream module (see how to use), we learned that when reading large files, Generally, it is not read into the memory all at once, but a data block is read in the form of a stream, and the continuous data blocks form the concept of data stream. During the process of reading and writing data blocks, the data will first be stored in the memory of buffer (temporary buffer area) to be processed.

1.1 Understand buffer memory allocation

#The memory allocation of the buffer object is not in the heap memory of V8, but at the C level of Node Implement memory application; in order to efficiently use the application to obtain memory, Node adopts the slab allocation mechanism (a dynamic memory management mechanism).

1. 2 The global nature of the buffer

Node has already installed the buffer into the memory when the process starts and puts it into the global The object can be introduced without require when using it, but it is still officially recommended to reference it explicitly through the import or require statement.

2. Create Buffer

In addition to reading files and obtaining http requests, buffer instances can also be constructed and created manually.

2.1 Buffer.alloc(size[, fill[, encoding]])

Parameters:

    size: buffer length
  • fill: pre-filled value, default value: 0
  • encoding: if fill is a string, it is the encoding of the string, default: utf-8
  • import { Buffer } from 'buffer';
    
    const buf = Buffer.alloc(8);
    
    console.log(buf);
    // <Buffer 00 00 00 00 00 00 00 00>
    Copy after login

2.2 Buffer.allocUnsafe(size)

Parameters:

    size: The required length of the new buffer
  • The underlying memory of Buffer instances created in this way will not be initialized. The contents of the newly created Buffer are unknown and may contain sensitive data.
  • import { Buffer } from &#39;buffer&#39;;
    
    const buf = Buffer.allocUnsafe(8);
    
    console.log(buf);
    // <Buffer e8 bf 99 e6 98 af e4 b8 80 e6>
    Copy after login

2.3 Buffer.from(string[, encoding])

Create a new buffer containing the incoming string

Parameters:

    string: string
  • encoding: encoding, default value: utf-8
  • import { Buffer } from &#39;buffer&#39;;
    
    const buf = Buffer.from(&#39;hello buffer&#39;);
    
    console.log(buf);
    // <Buffer 68 65 6c 6c 6f 20 62 75 66 66 65 72>
    Copy after login
    Copy after login

2.4 Buffer.from(array)

Use bytes in the range

0255 array to allocate new Buffer.

import { Buffer } from &#39;buffer&#39;;

const array = [0x62, 0x78, 0x84];
const buf = Buffer.from(array);

console.log(buf);
// <Buffer 62 78 84>
Copy after login

3. Copy Buffer

3.1 Buffer.from(buffer)

Parameters:

    buffer, the buffer instance to be copied
  • import { Buffer } from &#39;buffer&#39;;
    // 新建
    const buf1 = Buffer.alloc(10, 2);
    // 复制
    const buf2 = Buffer.from(buf1);
    
    console.log(buf1);
    // <Buffer 02 02 02 02 02 02 02 02 02 02>
    console.log(buf2);
    // <Buffer 02 02 02 02 02 02 02 02 02 02>
    Copy after login

3.2 buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]] )

Copy the buf instance to the target target

import { Buffer } from &#39;buffer&#39;;

const buf1 = Buffer.alloc(10, 2);
const buf2 = Buffer.allocUnsafe(10)
// 将buf1复制到buf2
buf1.copy(buf2);

console.log(buf1);
// <Buffer 02 02 02 02 02 02 02 02 02 02>
console.log(buf2);
// <Buffer 02 02 02 02 02 02 02 02 02 02>
Copy after login

4. Splice Buffer

4.1 Buffer.concat(list[, totalLength])

Returns a new buffer in which all buffer instances in the list are connected together

Parameters:

    list: |
  • totalLength: The total length of the connection.

Note:

    If the list has no entries, or totalLength is 0, a new zero-length Buffer is returned.
  • If totalLength is not provided, it is calculated from the Buffer instances in the list by adding their lengths.
  • import { Buffer } from &#39;buffer&#39;;
    
    const buf1 = Buffer.alloc(4, 2);
    const buf2 = Buffer.alloc(4, 3);
    
    const buf3 = Buffer.concat([buf1, buf2]);
    
    console.log(buf1); // <Buffer 02 02 02 02>
    console.log(buf2); // <Buffer 03 03 03 03>
    console.log(buf3); // <Buffer 02 02 02 02 03 03 03 03>
    Copy after login

5. Intercept Buffer

##5.1 buf.slice([start[, end]])Return a new Buffer instance from the buf instance. The returned new Buffer instance is only a reference to the source buf instance, that is, modifications to the newly returned instance will affect the original Buffer instance

Parameters :

  • start: 起始位置,默认0
  • end: 结束位置,默认buf.length
import { Buffer } from &#39;buffer&#39;;

const buf1 = Buffer.alloc(10, 2);
// 截取
const buf2 = buf1.slice(1,4);
// 截取部分修改
buf2[0] = 0x63;

console.log(buf1);
// <Buffer 02 63 02 02 02 02 02 02 02 02>
console.log(buf2);
// <Buffer 63 02 02>
Copy after login

6. 填充Buffer

6.1 buf.fill(value[, offset[, end]][, encoding])

参数:

  • value,填充值
  • offset: 在开始填充 buf 之前要跳过的字节数,默认值0
  • end: 结束填充buf(不包括在内)的位置,默认值buf.length
  • encoding,如果value值为字符串,则为字符串编码,默认utf-8
import { Buffer } from &#39;buffer&#39;;

const buf1 = Buffer.allocUnsafe(8).fill(2);

console.log(buf1);
// <Buffer 02 02 02 02 02 02 02 02>
Copy after login

6.2 buf.write(string[, offset[, length]][, encoding])

根据 encoding 中的字符编码将 string 写入 buf 的 offset 处。

注意:length 参数是要写入的字节数。 如果 buf 没有足够的空间来容纳整个字符串,则只会写入 string 的一部分

参数:

  • string: 写入的字符串值
  • offset: 开始写入 string 之前要跳过的字节数,默认值为0
  • length: 写入的最大字节数,默认值buf.length - offset
  • encoding: 编码,默认utf-8
import { Buffer } from &#39;buffer&#39;;
// buf1 length为12
const buf1 = Buffer.alloc(12, 3);
// write offset大于buf1.length,写入无效
buf1.write(&#39;hello&#39;, 12);

console.log(buf1);
// <Buffer 03 03 03 03 03 03 03 03 03 03 03 03>
// 部分写入
buf1.write(&#39;hello&#39;, 10);
// <Buffer 03 03 03 03 03 03 03 03 03 03 68 65>
Copy after login

7. Buffer工具方法

7.1 Buffer.isBuffer(obj)

检验传入obj是否为buffer

import { Buffer } from &#39;buffer&#39;;

const buf1 = Buffer.alloc(12, 3);

console.log(Buffer.isBuffer(buf1));
// true
Copy after login

7.2 Buffer.isEncoding(encoding)

检查传入的编码名称是否被Buffer所支持

import { Buffer } from &#39;buffer&#39;;

console.log(Buffer.isEncoding(&#39;utf-8&#39;))
// true
Copy after login

8. Buffer与String的转换

Buffer转String

8.1 buf.toString([encoding[, start[, end]]])

参数:

  • encoding:使用的字符串编码,默认utf-8
  • start,开始位置,默认0
  • end,结束位置,默认buf.length
import { Buffer } from &#39;buffer&#39;;

const buf1 = Buffer.allocUnsafe(26)

for (let i = 0; i < 26; i++) {
  // 97 是 &#39;a&#39; 的十进制 ASCII 值。
  buf1[i] = i + 97;
}

console.log(buf1.toString())
// abcdefghijklmnopqrstuvwxyz
Copy after login

String转Buffer

8.2 Buffer.from(string[, encoding])

参数:

  • string: 字符串
  • encoding: 编码,默认值:utf-8
import { Buffer } from &#39;buffer&#39;;

const buf = Buffer.from(&#39;hello buffer&#39;);

console.log(buf);
// <Buffer 68 65 6c 6c 6f 20 62 75 66 66 65 72>
Copy after login
Copy after login

9. Buffer与Array的对比

9.1 与Array类似点

  • 可以使用下标获取指定位置的值
  • 可以使用length属性获取Buffer大小
  • 可以使用for...of遍历

9.2 与Array不同之处

  • 存储的是16进制的两位数
  • 值为0-255
  • 支持多种编码格式
  • 内存不在v8堆中分配
  • 底层有c++实现,上层由js控制

更多node相关知识,请访问:nodejs 教程!!

The above is the detailed content of What is buffer? Learn more about the buffer module in Nodejs. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The difference between nodejs and vuejs The difference between nodejs and vuejs Apr 21, 2024 am 04:17 AM

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

Is nodejs a backend framework? Is nodejs a backend framework? Apr 21, 2024 am 05:09 AM

Node.js can be used as a backend framework as it offers features such as high performance, scalability, cross-platform support, rich ecosystem, and ease of development.

How to connect nodejs to mysql database How to connect nodejs to mysql database Apr 21, 2024 am 06:13 AM

To connect to a MySQL database, you need to follow these steps: Install the mysql2 driver. Use mysql2.createConnection() to create a connection object that contains the host address, port, username, password, and database name. Use connection.query() to perform queries. Finally use connection.end() to end the connection.

What are the global variables in nodejs What are the global variables in nodejs Apr 21, 2024 am 04:54 AM

The following global variables exist in Node.js: Global object: global Core module: process, console, require Runtime environment variables: __dirname, __filename, __line, __column Constants: undefined, null, NaN, Infinity, -Infinity

What is the difference between npm and npm.cmd files in the nodejs installation directory? What is the difference between npm and npm.cmd files in the nodejs installation directory? Apr 21, 2024 am 05:18 AM

There are two npm-related files in the Node.js installation directory: npm and npm.cmd. The differences are as follows: different extensions: npm is an executable file, and npm.cmd is a command window shortcut. Windows users: npm.cmd can be used from the command prompt, npm can only be run from the command line. Compatibility: npm.cmd is specific to Windows systems, npm is available cross-platform. Usage recommendations: Windows users use npm.cmd, other operating systems use npm.

Is there a big difference between nodejs and java? Is there a big difference between nodejs and java? Apr 21, 2024 am 06:12 AM

The main differences between Node.js and Java are design and features: Event-driven vs. thread-driven: Node.js is event-driven and Java is thread-driven. Single-threaded vs. multi-threaded: Node.js uses a single-threaded event loop, and Java uses a multi-threaded architecture. Runtime environment: Node.js runs on the V8 JavaScript engine, while Java runs on the JVM. Syntax: Node.js uses JavaScript syntax, while Java uses Java syntax. Purpose: Node.js is suitable for I/O-intensive tasks, while Java is suitable for large enterprise applications.

Is nodejs a back-end development language? Is nodejs a back-end development language? Apr 21, 2024 am 05:09 AM

Yes, Node.js is a backend development language. It is used for back-end development, including handling server-side business logic, managing database connections, and providing APIs.

How to deploy nodejs project to server How to deploy nodejs project to server Apr 21, 2024 am 04:40 AM

Server deployment steps for a Node.js project: Prepare the deployment environment: obtain server access, install Node.js, set up a Git repository. Build the application: Use npm run build to generate deployable code and dependencies. Upload code to the server: via Git or File Transfer Protocol. Install dependencies: SSH into the server and use npm install to install application dependencies. Start the application: Use a command such as node index.js to start the application, or use a process manager such as pm2. Configure a reverse proxy (optional): Use a reverse proxy such as Nginx or Apache to route traffic to your application

See all articles