minipass-collect
npmv2.0.1A 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.
Runtime packages this one declares itself.
Distinct packages in the full runtime tree, deduplicated the way a package manager would.
Unpacked size of this package plus its entire runtime tree.
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 thanDependencies
Declared by minipass-collect v2.0.1. Runtime dependencies are installed with the package; dev dependencies are not.
Runtime (1)
Dev (1)
Used by
Popular packages that depend on minipass-collect.
Relationship graph
Dependencies (left) and dependents (right) of minipass-collect.
Frequently installed together
create a pipeline of streams using Minipass
the most correct and second fastest glob implementation in JavaScript
Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.
Map over promises concurrently
filesystem utilities for the npm cli
fs read and write streams based on minipass
Release history
No releases in the last two years, typically about 15 days apart.
| Version | Published | Size | License |
|---|---|---|---|
| 2.0.1latest | 3 years ago | 4.8 KB | ISC |
| 2.0.0 | 3 years ago | 4.8 KB | ISC |
| 1.0.2 | 7 years ago | 4.8 KB | ISC |
| 1.0.1 | 7 years ago | 4.2 KB | ISC |
| 1.0.0 | 7 years ago | 3.6 KB | ISC |
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.