
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.
eventuate-stream
Advanced tools
Create a node-style duplex stream from an eventuate
var eventuate = require('eventuate'),
eventuateStream = require('eventuate-stream'),
jsonstream = require('jsonstream')
var request = eventuate()
var requestStream = eventuateStream(request)
requestStream.pipe(jsonstream.stringify(false)).pipe(process.stdout)
request(function onRequest (req) {
console.log('\nGot a request for resource: ' + req.resource)
})
requestStream.write({ resource: '/something' })
requestStream.write({ resource: '/something/else' })
var eventuateStream = require('eventuate-stream'),
event = require('eventuate')()
Create a duplex object-mode stream. Anything written to the stream will be produced by the eventuate, and anything produced by the eventuate will be readable/emitted via the stream.
With npm do:
npm install eventuate-stream
npm test [--dot | --spec] [--grep=pattern]
Specifying --dot or --spec will change the output from the default TAP style.
Specifying --grep will only run the test files that match the given pattern.
npm run coverage [--html]
This will output a textual coverage report. Including --html will also open
an HTML coverage report in the default browser.
FAQs
Create a node-style duplex stream from an eventuate
The npm package eventuate-stream receives a total of 1 weekly downloads. As such, eventuate-stream popularity was classified as not popular.
We found that eventuate-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
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.