
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
web-stream-transform
Advanced tools
Functional transform helpers for Web Streams — map, filter, take, batch, and tap
Functional transform helpers for Web Streams — map, filter, take, batch, and tap
npm install web-stream-transform
import {mapStream, filterStream, takeStream, batchStream, tapStream} from 'web-stream-transform';
const result = ReadableStream.from([1, 2, 3, 4, 5, 6])
.pipeThrough(filterStream(x => x % 2 === 0))
.pipeThrough(mapStream(x => x * 10))
.pipeThrough(takeStream(2));
// Yields: 20, 40
Returns a TransformStream that applies function_ to each chunk.
Returns a TransformStream that only passes chunks where function_ returns true.
Returns a TransformStream that passes only the first count chunks then terminates.
Returns a TransformStream that collects chunks into arrays of size, flushing any remainder on close.
Returns a TransformStream that calls function_ for side effects but passes chunks through unchanged.
MIT
FAQs
Functional transform helpers for Web Streams — map, filter, take, batch, and tap
We found that web-stream-transform demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.