How to Encode / Decode to / from base64 in Node.JS
Today I ran into this basic problem. A quick search on google gave me the answer, I tested it, it worked, and the rest is history.
Here is the code.
let plainText = "Hello World!";
console.log("Plaint text = " + plainText);
// Encoding to base64
let base64 = new Buffer(plainText).toString('base64');
console.