
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.
create a ReadStream
var cs = require('path/to/readStream').controlStream
fs.createReadStream('file').pipe(cs)
cs.read(50, function(err, data){
//first 50 bytes are available in data
})
move to a certain location
cs.curser = 100
cs.read(50, function(err, data){
//read bytes 100 to 150
})
pipe to a destination
var cs = require('path/to/readStream').controlStream
fs.createReadStream('file').pipe(cs).pipe(dest)
pipe to multiple destinations
var cs = require('path/to/readStream').controlStream
fs.createReadStream('file').pipe(cs)
cs.pipe(dest1)
cs.pipe(dest2)
describe pace and cadence of the pipe (bytes per second)
var cs = require('path/to/readStream').controlStream
fs.createReadStream('file').pipe(cs)
cs.pipe(dest1, {pace:50,cadence:1000})
//pipe at 50 bytes per second
FAQs
read Streams that have a read function
We found that readstream 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.