Node.js 使用 Buffer base64编码解码

// 1. 编码
const buf = Buffer.from('hello world', 'utf8');

console.log(buf.toString('base64'));
// aGVsbG8gd29ybGQ=

// 2. 解码
const b = Buffer.from('aGVsbG8gd29ybGQ=', 'base64')
console.log(b.toString())
// hello world

你可能感兴趣的:(base64-encode)