Skip to content

Tag Archives: Node.js-Buffer-module

The Buffer.writeInt32LE() method is used to write specified bytes into the buffer using little-endian format. The value contains a valid signed 32-bit integer. If the… Read More
The Buffer.readUInt32LE() method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to read 32-bit value from an… Read More
The Buffer.writeIntBE() Method is used to write specified bytes of value to the buffer at give offset in big endian format. It supports upto 48… Read More
The Buffer.swap64() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to swap the buffer byte order in-place.… Read More
The Buffer.isEncoding() method checks whether the given encoding is supported or not. This method returns a Boolean value either true or false. Syntax: Buffer.isEncoding( encoding… Read More
Buffer is a temporary memory storage which stores the data when it is being moved from one place to another. It is like an array… Read More
The Buffer.swap32() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to swap the buffer byte order in-place.… Read More
The Buffer.readUInt16BE() method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to read 16-bit value from an… Read More
The Buffer.writeUInt16LE() method is used to write specified bytes in Little Endian format to the buffer object. Here, value should be a valid unsigned 16-bit… Read More
The Buffer.readUInt16LE() method is an inbuilt application programming interface of class Buffer within Buffer module which is used to read an unsigned 16-bit integer from… Read More
The Buffer.writeFloatBE() method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to writes big endian 32 bits… Read More
The Buffer.writeUIntLE() method is used to write the specified bytes, using little endian, to a Buffer object. It supports up to 48 bits of accuracy.… Read More
The Buffer.writeUInt16BE() method is used to write specified bytes using Big endian format to the buffer object. The value should be a valid unsigned 16-bit… Read More
The Buffer.readUInt32BE() method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to read 32-bit value from an… Read More
The Buffer.writeFloatLE() method is an inbuilt application programming interface of class Buffer with in Buffer module that writes a value to the buffer at the… Read More