b64

Base64 streaming encoder and decoder

This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
Last updated 12 years ago by hueniverse .
BSD · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install b64 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 4.1.2                                ...           latest (7 years ago)

12 Versions

  • 4.1.2 [deprecated]           ...           7 years ago
  • 4.1.1 [deprecated]           ...           7 years ago
  • 4.1.0 [deprecated]           ...           7 years ago
  • 4.0.0 [deprecated]           ...           9 years ago
  • 3.0.3 [deprecated]           ...           9 years ago
  • 3.0.2 [deprecated]           ...           10 years ago
  • 3.0.1 [deprecated]           ...           10 years ago
  • 3.0.0 [deprecated]           ...           10 years ago
  • 2.0.1 [deprecated]           ...           11 years ago
  • 2.0.0 [deprecated]           ...           12 years ago
  • 1.0.1 [deprecated]           ...           14 years ago
  • 1.0.0 [deprecated]           ...           15 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (2)
Dependents (4)

Copyright 2013 - present © cnpmjs.org | Home |