This package has been deprecated

Author message:

This module has moved and is now available at @hapi/b64. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.

b64

4.1.2 • Public • Published

Base64 streaming encoder and decoder

Build Status

Lead Maintainer - Wyatt Preul

Installation

npm install b64 --save

API

encode(buffer)

Base64 encode the buffer and return it as a new Buffer.

decode(buffer)

Base64 decode the buffer and return the result as a new buffer.

Encoder

Transform stream that base64 encodes each chunk of the stream.

Example:

'use strict';
 
const Fs = require('fs');
const B64 = require('b64');
 
const stream = Fs.createReadStream(`${__dirname}/package.json`);
const encoder = new B64.Encoder();
 
stream.pipe(encoder).pipe(process.stdout);

Decoder

Transform stream that base64 decodes each chunk of the stream.

Example:

'use strict';
 
const Fs = require('fs');
const B64 = require('b64');
 
const stream = Fs.createReadStream(`${__dirname}/encodedfile.b64`);
const decoder = new B64.Decoder();
 
stream.pipe(decoder).pipe(process.stdout);

base64urlEncode(value)

Encodes value of string or buffer type in Base64 or URL encoding, function will assert input value is correct.

base64urlDecode(value)

Decodes string into Base64 or URL encoding, function throws an error on invalid input and returns a string or buffer depending on encoding provided. Default encoding is binary.

Package Sidebar

Install

npm i b64

Weekly Downloads

49,513

Version

4.1.2

License

BSD-3-Clause

Unpacked Size

8.88 kB

Total Files

7

Last publish

Collaborators

  • devinivy
  • marsup
  • nargonath
  • nlf