Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
async-iterate-stream
Advanced tools
Turns a nodejs stream.Readable into an Iterable or AsyncIterable so that it can be iterated in an async function. Stream back-pressure is maintained duration iteration: the readable source's data events are never dropped and back-pressure is applied to stream if iteration can not keep up.
There are two ways to use this. The simple way is the bleeding edge way (https://github.com/tc39/proposal-async-iteration):
import {asyncIterateStream} from "async-iterate-stream/asyncIterateStream";
let src = fs.createReadableStream("...");
for await (const chunk of asyncIterateStream(src, false)) {
console.log(chunk.toString());
}
Alternatively, the non bleeding edge way is also a bit more verbose:
import {iterateStream} from "async-iterate-stream/iterateStream";
let src = fs.createReadableStream("...");
for (const p of iterateStream(src, false)) {
const chunk = await p;
// it's possible that stream ended while waiting for chunk, in such case chunk is undefined,
if (chunk !== undefined)
console.log(chunk.toString());
}
FAQs
async-iterate-stream --------
The npm package async-iterate-stream receives a total of 4 weekly downloads. As such, async-iterate-stream popularity was classified as not popular.
We found that async-iterate-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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.