</>PackageGraphPackageGraph

minipass-collect

npmv2.0.1

A Minipass stream that collects all the data into a single chunk

Not recommended for new projects

No — minipass-collect should not be adopted for new projects. Last published 1116 days ago.

  • ?Adoption: grade ?, Not reported by this registry.

    No download data reported for this package yet.

  • FMaintenance: grade F, Failing.

    Last published 1116 days ago.

  • AWeight: grade A, Excellent.

    Pulls in 1 transitive package, about 4.8 KB installed (at least — some of the tree is still being crawled).

  • BSupply chain: grade B, Good.

    This package has a single maintainer (bus factor of 1).

  • ALicense: grade A, Excellent.

    ISC — permissive, with no copyleft found in the dependency tree.

Grades are computed deterministically from registry metadata collected by PackageGraph — downloads, dependents, publish dates, the resolved dependency tree, maintainer count, and declared licenses. No third-party scores are used.

Install cost

What you actually take on by adding minipass-collect to a project.

1
Direct dependencies

Runtime packages this one declares itself.

1
Total installed

Distinct packages in the full runtime tree, deduplicated the way a package manager would.

4.8 KB
Install size

Unpacked size of this package plus its entire runtime tree.

1
Tree depth

Longest resolved dependency chain below this package.

Part of this dependency tree has not been crawled yet, so these figures are a lower bound rather than a final total.

Compatibility

Node.js
node >=16 || 14 >=14.17
Module format
CommonJS only
TypeScript
No bundled types
Install scripts
None

Quick start

A usage example from the minipass-collect README.

const Collect = require('minipass-collect')

const collector = new Collect()
collector.on('data', allTheData => {
  console.log('all the data!', allTheData)
})

someSourceOfData.pipe(collector)

// note that you can also simply do:
someSourceOfData.pipe(new Minipass()).concat().then(data => ...)
// or even, if someSourceOfData is a Minipass:
someSourceOfData.concat().then(data => ...)
// but you might prefer to have it stream-shaped rather than
Example truncated — see the full README.

Dependencies

Declared by minipass-collect v2.0.1. Runtime dependencies are installed with the package; dev dependencies are not.

Runtime (1)

minipass ^7.0.3

Dev (1)

tap ^16.3.8

Used by

Popular packages that depend on minipass-collect.

Relationship graph

Dependencies (left) and dependents (right) of minipass-collect.

cacacheminipass-collect
minipass-collect dependencies dependents

Frequently installed together

Release history

No releases in the last two years, typically about 15 days apart.

Recent versions of minipass-collect
VersionPublishedSizeLicense
2.0.1latest3 years ago4.8 KBISC
2.0.03 years ago4.8 KBISC
1.0.27 years ago4.8 KBISC
1.0.17 years ago4.2 KBISC
1.0.07 years ago3.6 KBISC

Overview

minipass-collect is an npm package that a Minipass stream that collects all the data into a single chunk. It has 1 known dependents in the graph. The latest version is 2.0.1, released under the ISC license.

Who should use it

Teams working in the npm ecosystem who need a Minipass stream that collects all the data into a single chunk and value a focused solution.

When not to use it

Consider an alternative if you need to have first-class TypeScript types out of the box, or if a more actively-maintained option better fits your npm stack.

Pros

  • Clear open-source license (ISC).
  • Lean dependency tree (2 direct dependencies).

Cons

  • No bundled TypeScript types (may require a separate @types package).

Auto-generated from collected registry metadata. No external claims are inferred.

Maintainers

Frequently asked questions

Should I use minipass-collect?

No — minipass-collect should not be adopted for new projects. Last published 1116 days ago.

How do I install minipass-collect?

Run `npm install minipass-collect` to add minipass-collect to your npm project.

How many dependencies does minipass-collect have?

minipass-collect declares 2 direct dependencies and pulls in 1 packages in total once its runtime tree is resolved totalling about 4.8 KB on disk.

What license is minipass-collect released under?

minipass-collect is distributed under the ISC license.

How popular is minipass-collect?

npm does not publish download counts. Within PackageGraph's crawl, 1 known packages depend on minipass-collect.

Is minipass-collect still maintained?

The most recent release of minipass-collect (v2.0.1) was published 3 years ago.

Does minipass-collect run install scripts?

No. minipass-collect does not define preinstall, install, or postinstall scripts, so installing it does not execute publisher-supplied code.