🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

nofilter

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nofilter

Read and write a growable buffer as a stream

latest
Source
npmnpm
Version
6.4.1
Version published
Weekly downloads
1.2M
0.82%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

buffer

FAQs

Package last updated on 05 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts