
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
collect-all
Advanced tools
DEPRECATED. This package has been replaced by stream-read-all which does the same job but with a Promises interface.
Returns a stream which fires a callback and becomes readable once all input is received.
By default the callback is invoked with a Buffer instance containing all concatenated input. If you set the option { objectMode: true }
the callback is invoked with an array containing all objects received.
Duplex
⏏Kind: Exported function
Param | Type | Description |
---|---|---|
[callback] | function | Called once with the collected input data (by default a Buffer instance, or array in objectMode .). The value returned by this callback function will be passed downstream. |
[options] | object | Stream options object, passed to the constructor for the stream returned by collect-all . If the callback function supplied returns a non-string/buffer value, set options.objectMode to true . |
Example
An example command-line client script - string input received at stdin is stamped with received
then written to stdout.
var collectAll = require('collect-all')
process.stdin
.pipe(collectAll(function (input) {
input = 'received: ' + input
return input
}))
.pipe(process.stdout)
An object-mode example:
var collectAll = require('collect-all')
function onAllCollected (collected) {
console.log('Objects collected: ' + collected.length)
}
var stream = collectAll(onAllCollected, { objectMode: true })
stream.write({})
stream.write({})
stream.end({}) // outputs 'Objects collected: 3'
© 2015-17 Lloyd Brookes <75pound@gmail.com>. Documented by jsdoc-to-markdown.
FAQs
Returns a stream which becomes readable once all input is received
The npm package collect-all receives a total of 163,800 weekly downloads. As such, collect-all popularity was classified as popular.
We found that collect-all demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.