Skip to content

yakovenkodenis/node-remote-base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Remote Base64 Build Status

======

Installation

npm install --save node-remote-base64

Usage

ES5

  const remoteBase64 = require('node-remote-base64');
  
  const getBase64 = () =>
    remoteBase65('http://placehold.it/100x100')
      .then(b64data => console.log(b64data))
      .catch(err => console.log(err));

Babel ES7 (Async/Await)

  import remoteBase64 from 'node-remote-base64';

  const getBase64 = async () => {
    const b64data = await remoteBase65('http://placehold.it/100x100');
    console.log(b64data);
  }

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

About

Fetch remote data to base64 format using Promises.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published