EN
Node.js - Base64 encode and decode
0 points
In this article, we would like to show you how to encode and decode Base64 in JavaScript under Node.js.
Quick solution:
xxxxxxxxxx
1
const text = 'some text...';
2
3
const encoded = Buffer.from(text, 'utf8').toString('base64');
4
console.log('Encoded text: ' + encoded); // c29tZSB0ZXh0Li4u
5
6
const decoded = Buffer.from(encoded, 'base64').toString('utf8');
7
console.log('Decoded text: ' + decoded); // some text...
In this example, we create a Base64-encoded ASCII string using Buffer.from()
with toString()
method.
xxxxxxxxxx
1
const text = 'some text...';
2
const encoded = Buffer.from(text, 'utf8').toString('base64');
3
4
console.log('Encoded text: ' + encoded); // c29tZSB0ZXh0Li4u
Output:
xxxxxxxxxx
1
c29tZSB0ZXh0Li4u
In this example, we decode a string of data that has been encoded using Base64 encoding.
xxxxxxxxxx
1
const encoded = 'c29tZSB0ZXh0Li4u';
2
const decoded= Buffer.from(encoded, 'base64').toString('utf8');
3
4
console.log('Decoded text: ' + decoded); // some text...
Output:
xxxxxxxxxx
1
some text...