Created
January 6, 2013 04:11
-
-
Save inadarei/4465153 to your computer and use it in GitHub Desktop.
base64 encode/decode in Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = "http://cdn1.giltcdn.com/images/share/uploads/0000/0001/7250/172502872/420x560.jpg"; | |
var encoded = new Buffer(url).toString('base64'); | |
var decoded = new Buffer(encoded, 'base64').toString('ascii') | |
console.log(encoded); | |
console.log(decoded); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know its probably a typo, but I want to clarify that it should be
Buffer.from(url).toString('base64')
without thenew
keyword.