
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.
#Spawner
A fluent and friendly wrapper for Node's Child Process spawning stuff.
To install
npm install spawner
In your javascript file.
var spawner = require('spawner');
array )spawner()
.withArguments(['-a', 'hello'])
Set the arguments to be passed to the executable
path )spawner()
.withArguments( args )
.inWorkingDirectory('/path/to/wd')
Defines the working directory for the process to be spawned in.
callback )spawner()
.onStdout( callback )
callback gets a stream from the process stdout. By default it is logged to the console.
callback )spawner() .onStderr( callback )
callback gets a stream from the process stderr. By default it is logged to the console.
pathToExecutable, callback)spawner() .withArguments( args ) .inWorkingDirectory( folder ) .spawn( 'node' , function(err){
// err = process exit code.
})
MIT
FAQs
A fluent interface for launching child processes in Node
The npm package spawner receives a total of 2 weekly downloads. As such, spawner popularity was classified as not popular.
We found that spawner 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.