# nofilter

> Read and write a growable buffer as a stream

Latest version **6.4.1** (published 2026-03-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install nofilter
pnpm add nofilter
yarn add nofilter
bun add nofilter
```

## Health

**Score 65/100 (B)** — status: stable.

Positive: has types; esm support; no vulnerabilities; has provenance; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 6.4.1 |
| Published | 2026-03-05 |
| First published | 2015-10-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=20 |
| Dependencies | 0 |
| Unpacked size | 56.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 0 |
| Author | Joe Hildebrand |
| Maintainers | hildjj |
| Keywords | buffer, stream, duplex, transform, #nofilter, no-filter, concat |

## Links

- npm: https://www.npmjs.com/package/nofilter
- Repository: https://github.com/hildjj/nofilter
- Homepage: https://github.com/hildjj/nofilter#readme
- Issues: https://github.com/hildjj/nofilter/issues
- npm.io page: https://npm.io/package/nofilter

## Alternatives

- [flatbuffers](https://npm.io/package/flatbuffers.md) — 6.0M weekly downloads
- [jwt-simple](https://npm.io/package/jwt-simple.md) — 259.5K weekly downloads
- [@exodus/patch-broken-hermes-typed-arrays](https://npm.io/package/@exodus/patch-broken-hermes-typed-arrays.md) — 28.5K weekly downloads
- [@native-to-anchor/buffer-layout](https://npm.io/package/@native-to-anchor/buffer-layout.md) — 12.2K weekly downloads
- [binary-parser-encoder](https://npm.io/package/binary-parser-encoder.md) — 5.3K weekly downloads

## Recent versions

- 6.4.1 (latest) — 2026-03-05
- 6.4.0 — 2025-10-29
- 6.3.0 — 2025-10-22
- 6.2.2 — 2025-10-22
- 6.2.1 — 2025-10-21
- 6.2.0 — 2025-10-21
- 6.1.0 — 2025-10-19
- 6.0.4 — 2025-10-19
- 6.0.2 — 2025-08-03
- 6.0.1 — 2025-06-21
- 6.0.0 — 2025-05-01
- 5.0.0 — 2024-09-03
- 4.0.2 — 2023-06-30
- 4.0.1 — 2023-06-25
- 4.0.0 — 2023-05-13
- … 17 more at https://npm.io/package/nofilter/versions

## README

[![Tests](https://github.com/hildjj/nofilter/actions/workflows/node.js.yml/badge.svg)](https://github.com/hildjj/nofilter/actions/workflows/node.js.yml)
[![coverage](https://codecov.io/gh/hildjj/nofilter/branch/main/graph/badge.svg?token=7BdD02c03C)](https://codecov.io/gh/hildjj/nofilter)

# NoFilter

A node.js package to read and write a stream of data into or out of what looks
like a growable [Buffer](https://nodejs.org/api/buffer.html).

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

# Examples

As a data sink:
```js
import {NoFilter} from 'nofilter';

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

As a data source:
```js
import {NoFilter} from 'nofilter';
const nf = new NoFilter('010203', 'hex');
nf.pipe(process.stdout);
```

Read the [API Docs](http://hildjj.github.io/nofilter/).

---
_Source: https://npm.io/package/nofilter · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
