
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
flushable-set
Advanced tools
A drop-in replacement of the native Set with an optional max size and a flush callback.
A drop-in replacement of the native Set with an optional max size and a flush callback.
import { FlushableSet } from "@vicary/flushable-set";
const set = new FlushableSet(null, {
maxSize: 3,
onFlush() {
console.log("Flushing items", Array.from(this));
},
});
for (let i = 0; i < 10; i++) {
set.add(i);
}
// Flushing items [0, 1, 2]
// Flushing items [3, 4, 5]
// Flushing items [6, 7, 8]
// Flushing items [9]
Asynchronous flush is supported with promise mutex, this comes in handy for database insertion from an external stream.
const chunk = new FlushableSet(null, {
maxSize: 100,
async onFlush() {
await db.insertMany(Array.from(this));
},
});
for await (const row of dataStream) {
// Automatically flushes to database for every 100 rows
await chunk.addAsync(row);
}
// Flush the remaining items
await chunk.flush();
If you find a bug or would like to suggest a new feature, please open an issue or submit a pull request on GitHub.
FlushableSet is licensed under the MIT License. See the LICENSE file for more information.
If you find this project useful, please consider supporting it by donating to the author.
FAQs
A drop-in replacement of the native Set with an optional max size and a flush callback.
The npm package flushable-set receives a total of 6 weekly downloads. As such, flushable-set popularity was classified as not popular.
We found that flushable-set demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.