Node.js TypeScript #3. Explaining the Buffer

JavaScript Node.js

This entry is part 3 of 15 in the Node.js TypeScript

Today we dive into another essential concept connected to Node.js: buffers. To understand them, we also explain what binary data is and why do we need character encodings. All this information is crucial when diving into other parts of Node.js, such as streams.

Node.js TypeScript #3: Buffers

The buffer exists in Node.js to help us manipulate binary data. But what is it exactly?

The computer represents data in binary: ones and zeros. To store a number, the machine first converts it to a binary representation. The conversion is usually pretty straightforward and in most cases does not leave any doubts on what its binary form should be.

Numbers are not the only type of data that we work with: we also have images, text, videos. To represent such data, we need to make up some conventions, because all the data is represented by numbers. When it comes to text, there are multiple character encodings, defining sets of characters and how to represent them using a number. A very popular one is UTF-8, which we use throughout this article.

The buffer is an array of numbers

The buffer is a chunk of memory and it is similar to an array of numbers. The trick to it is that you establish the size of a buffer when it is created and can’t change it afterward. It is an array of bytes. Since a maximum number saved on a single byte is 255, the buffer element can’t contain bigger numbers:

As you can see, if you try to assign a value bigger than 255, it gets divided by 256 and the remainder of the division is assigned to the element.

An interesting thing goes with negative numbers. If you try to assign a negative number to a byte,
it gets converted using the two’s complement system.

-50(10) = 11001110(U2)

In the above example, parseInt is used to parse a binary number into decimal. If you would like to read more about data type conversion,
check out [1] + [2] – [3] === 9!? Looking into assembly code of coercion

When you create the buffer, you can also fill it with a value

String Buffers

Since Buffers store byte data, you can also use it to operate on strings.

By default, it uses UTF-8 encoding and we need to keep that in mind. You can change it using the second argument
that you pass to the “from” function.

Such Buffer can be easily read using the toString function.

The things are not always so easy though! There are many UTF-8 characters that take more than just one byte and that might cause you some trouble. Let’s look at this string:

Hello 🌎 world!

There is an emoji in the middle that consists of four bytes:       

Let’s save this data in multiple buffers:

 is how you write a binary number in JavaScript

Something like this can happen for example when you are interpreting a big text file. If you parse it in chunks, one of the chunks might contain just a part of the character, just like above. Let’s try to stringify it:

Unfortunately, it doesn’t work good! This is because every buffer is treated separately. We can improve on that using a StringDecoder. It provides an API for decoding Buffer objects into strings while preserving multi-byte characters.

In the example above I use the reduce function. If you are unfamiliar with it, the check out the explanation on MDN

The StringDecoder ensures that the decoded string does not contain any incomplete multibyte characters by holding the incomplete character in an internal buffer until the next call to the  .

Reading a file

In the first part of the series, we read a file specifying the encoding.

Thanks to that, we receive its contents as a string. If we don’t provide the encoding, we receive a raw buffer that we can stringify.

The readFile function reads the entire contents of a file at once. Because of that, it calls our callback function just once after the whole file is processed – even if it is very big. To perform actions on parts of a file before the whole content is loaded, we need to use the createReadStream function, that returns a stream.

Summary

The buffer is an array of bytes, where an element has a value from 0 to 255. Since every type of data, such as images and text has to be represented as numbers, we also explain the idea of character encodings. All this information is important is important when discussing streams that are soon to be covered. Stay tuned!

Series Navigation<< Node.js TypeScript #2. The synchronous nature of the EventEmitterNode.js TypeScript #4. Paused and flowing modes of a readable stream >>
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments