Encoding and decoding Base64 text, in Node.js, is as easy as:
function base64Encode(text) { return new Buffer(text).toString('base64'); } function base64Decode(text) { return new Buffer(text, 'base64').toString('utf8'); }
This code is used by my new online Base64 decoder/encoder utility.
For more details about manipulating base 64 data in Node.js, see Hack Sparrow's post.
What messages are encoded here?
Title | Date |
EBTCalc (Android) Version 1.53 is now available | May 19, 2024 |
Vault 3 Security Enhancements | October 24, 2023 |
Vault 3 is now available for Apple OSX M2 Mac Computers! | September 18, 2023 |
Vault (for Desktop) Version 0.77 Released | March 26, 2023 |
EBTCalc (Android) Version 1.44 is now available | October 12, 2021 |
Vault (Desktop) Version 0.72 Released | October 6, 2021 |
EBT Compass is Now Available for Android Devices | June 2, 2021 |