
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
pluck-stream
Advanced tools
Pluck a property (or properties) from a JSON stream
$ npm install --save pluck-stream
var pluck = require('pluck-stream')
var rs = fs.createReadStream('./package.json')
pluck(rs, 'version', function (err, version) {
// version = 1.0.0
})
Pluck can also emit events as they are parsed. Just leave out the callback.
pluck(res, 'version').on('version', function (version) {
// version = 1.0.0
})
This module wraps JSONStream simply to avoid some of the plumbing.
StreamThe source stream to pluck properties from.
String, String[]The accepted notation is the same as documented JSONStream.parse.
FunctionIf a callback is provided, when the stream is ended, the callback is executed with the following parameters.
If a callback is not provided, pluck.stream is automatically engaged.
?ErrorAn error that ocurred while parsing the stream. Errors on the source stream need to be listened to independently.
*If multiple properties were provided, this is a hash of property key -> parsed value. If a single property was given, this is just the value.
FunctionStreamUse this function to get multiple results as they arrive. Events are emitted under the same name as the given property string.
var pluck = require('pluck-stream')
var rs = fs.createReadStream('./package.json')
rs.pipe(pluck.stream('version'))
.on('version', function(version) {
// version = 1.0.0
})
String, String[]All arguments are combined into an array of property strings to parse. The accepted notation is the same as documented JSONStream.parse.
FAQs
Pluck a property (or properties) from a JSON stream
The npm package pluck-stream receives a total of 0 weekly downloads. As such, pluck-stream popularity was classified as not popular.
We found that pluck-stream 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.