nofilter
Read and write a growable buffer as a stream
Last updated a month ago by GitHub Actions .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install nofilter 
SYNC missed versions from official npm registry.

Tests coverage

NoFilter

A node.js package to read and write a stream of data into or out of what looks like a growable Buffer.

I kept needing this, and none of the existing packages seemed to have enough features, test coverage, etc.

Examples

As a data sink:

import {NoFilter} from 'nofilter';

const nf = new NoFilter();
nf.on('finish', () => {
  console.log(nf.toString('base64'));
});
process.stdin.pipe(nf);

As a data source:

import {NoFilter} from 'nofilter';
const nf = new NoFilter('010203', 'hex');
nf.pipe(process.stdout);

Read the API Docs.

Current Tags

  • 6.4.1                                ...           latest (a month ago)

32 Versions

  • 6.4.1                                ...           a month ago
  • 6.4.0                                ...           5 months ago
  • 6.3.0                                ...           6 months ago
  • 6.2.2                                ...           6 months ago
  • 6.2.1                                ...           6 months ago
  • 6.2.0                                ...           6 months ago
  • 6.1.0                                ...           6 months ago
  • 6.0.4                                ...           6 months ago
  • 6.0.2                                ...           8 months ago
  • 6.0.1                                ...           10 months ago
  • 6.0.0                                ...           a year ago
  • 5.0.0                                ...           2 years ago
  • 4.0.2                                ...           3 years ago
  • 4.0.1                                ...           3 years ago
  • 4.0.0                                ...           3 years ago
  • 3.1.0                                ...           4 years ago
  • 3.0.3                                ...           5 years ago
  • 3.0.2                                ...           5 years ago
  • 3.0.1                                ...           5 years ago
  • 3.0.0                                ...           5 years ago
  • 2.0.3                                ...           5 years ago
  • 2.0.2                                ...           5 years ago
  • 2.0.0                                ...           5 years ago
  • 1.0.4                                ...           6 years ago
  • 1.0.3                                ...           7 years ago
  • 1.0.2                                ...           7 years ago
  • 1.0.1                                ...           7 years ago
  • 1.0.0                                ...           8 years ago
  • 0.0.3                                ...           10 years ago
  • 0.0.2                                ...           11 years ago
  • 0.0.1                                ...           11 years ago
  • 0.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (0)
None
Dev Dependencies (15)
Dependents (3)

Copyright 2013 - present © cnpmjs.org | Home |