
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
strong-child
Advanced tools
A child process who accepts a data stream from strong-parent (who spawns me) and exposes a duplex stream to process data and send it back to the parent via the fs
A module that exposes a duplex stream interface for communicating with
strong-parent. This creates
a simple way to receive a stream of data from the parent process via the
filesystem and send it back up to the parent in the same way.
npm i strong-child
See [strong-parent] for the parent process usage. Below is how you would
create a child process.
var strongChild = require('strong-child');
var jsonStream = require('json-stream');
var someExpensiveObjectTransform = require('./transform');
var duplex = strongChild();
//
// Receive some newline delimited JSON, transform it and send it back to the
// parent
//
duplex
.pipe(jsonStream())
.pipe(someExpensiveObjectTransform())
.pipe(duplex);
Tests found in strong-parent
MIT
FAQs
A child process who accepts a data stream from strong-parent (who spawns me) and exposes a duplex stream to process data and send it back to the parent via the fs
We found that strong-child 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.