Javatpoint Logo
Javatpoint Logo

Node.js Buffers

Node.js provides Buffer class to store raw data similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. Buffer class is used because pure JavaScript is not nice to binary data. So, when dealing with TCP streams or the file system, it's necessary to handle octet streams.

Buffer class is a global class. It can be accessed in application without importing buffer module.

Node.js Creating Buffers

There are many ways to construct a Node buffer. Following are the three mostly used methods:

  1. Create an uninitiated buffer: Following is the syntax of creating an uninitiated buffer of 10 octets:
  2. Create a buffer from array: Following is the syntax to create a Buffer from a given array:
  3. Create a buffer from string: Following is the syntax to create a Buffer from a given string and optionally encoding type:

Node.js Writing to buffers

Following is the method to write into a Node buffer:

Syntax:

Parameter explanation:

string: It specifies the string data to be written to buffer.

offset: It specifies the index of the buffer to start writing at. Its default value is 0.

length: It specifies the number of bytes to write. Defaults to buffer.length

encoding: Encoding to use. 'utf8' is the default encoding.

Return values from writing buffers:

This method is used to return number of octets written. In the case of space shortage for buffer to fit the entire string, it will write a part of the string.

Let's take an example:

Create a JavaScript file named "main.js" having the following code:

File: main.js

Open the Node.js command prompt and execute the following code:

Output:

Node.js buffers 1

Node.js Reading from buffers

Following is the method to read data from a Node buffer.

Syntax:

Parameter explanation:

encoding: It specifies encoding to use. 'utf8' is the default encoding

start: It specifies beginning index to start reading, defaults to 0.

end: It specifies end index to end reading, defaults is complete buffer.

Return values reading from buffers:

This method decodes and returns a string from buffer data encoded using the specified character set encoding.

Let's take an example:

File: main.js

Open Node.js command prompt and execute the following code:

Output:

Node.js buffers 2
Next TopicNode.js Stream





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA