Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
read-only-stream
Advanced tools
wrap a readable/writable stream to be read-only to prevent mucking up the input side
Suppose you have a module that uses a readable/writable stream internally but want to expose just the readable part of that internal stream. This is common if you use the writable side internally and expose the readable side as the interface.
Now we can write some code like this with a through
stream internally for
convenience:
var through = require('through2');
var readonly = require('read-only-stream');
module.exports = function () {
var stream = through();
stream.end('wooooo\n');
return readonly(stream);
};
but consumers won't be able to write to the input side and break the api:
var wrap = require('./wrap.js');
var ro = wrap(); // can't write to `ro` and muck up internal state
ro.pipe(process.stdout);
var readonly = require('read-only-stream')
Return a readable stream ro
that wraps the readable/writable stream
argument
given to only expose the readable side.
stream
can be a streams1 or streams2 stream.
With npm do:
npm install read-only-stream
MIT
FAQs
wrap a readable/writable stream to be read-only
The npm package read-only-stream receives a total of 0 weekly downloads. As such, read-only-stream popularity was classified as not popular.
We found that read-only-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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.