1.0.0 • Published 9 years ago

file-base64 v1.0.0

Weekly downloads
3,509
License
MIT
Repository
github
Last release
9 years ago

file-base64

  • Encode a file to a base64 string
  • Dncode a base64 string to a file

Install

$ npm install file-base64 --save

Usage

var base64 = require('file-base64');

base64.encode('text.txt', function(err, base64String) {
  console.log(base64String);
});

var base64String = 'swesh523sfsfgwg';
base64.decode(base64String, 'text.new.txt' function(err, output) {
  console.log('success');
});