EN
Node.js - convert string to Base64
0 points
In this article, we would like to show you how to convert string to Base64 under Node.js.
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