to-base64

1.0.1 • Public • Published

to-base64

Transform file from local or network to base64 string data

Installation

npm install to-base64

Quick Start

var toBase64 = require('to-base64');
 
toBase64('https://github.com/favicon.ico', function (result) {
  console.log(result.base64);
  console.log(result.contentType);
}, function (error) {
  console.log(error);
});

APIs

toBase64(String path, Function callback, function onError)

.fromFile(String path, Function callback, Function onError)

.fromURL(String url, Function callback, Function onError)

Todo

  • add fromFile support

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i to-base64

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • shallker-wang