Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
async-pool-js
Advanced tools
Pool.js makes it easy to execute async tasks in parallel, with optional concurrency and/or rate limits for rate-limited APIs.
It's a lightweight, one-file solution with zero dependencies and works in both Node.js and the browser.
For more on why I wrote this, see the blog post.
npm install pool-js
Pool.js works best with async iterables. Here's an example of using it with the Stripe API (uses my helper function for getting async iterators from Stripe Lists).
import { iterateList } from "./stripeiterators";
// This creates an async iterable that will iterate over all
// balance transactions in your Stripe account.
const balanceTransactions = iterateList((starting_after, limit) =>
stripe.balanceTransactions.list({
starting_after,
limit,
}),
);
// Here's the user-defined async task that will be called
// for each balance transaction.
async function processTransaction(transaction) {
if (transaction.type === "payment") {
const chargeId = transaction.source;
const payment = await stripe.charges.retrieve(chargeId);
console.log(payment.amount);
// Do stuff
}
}
// Kicks off the pool with 100 concurrent tasks and a
// rate limit of 100 tasks per second.
await iterateWithPool(
balanceTransactions,
{ rate: 100, concurrency: 100 },
processTransaction,
);
You can give Pool.js a maximum number of concurrent tasks, and/or a strict rate limit. The rate limit is implemented using a token-bucket-like algorithm which matches what Stripe (any many other API rate limiters) uses internally.
In your task method, you can return false if you want to cancel execution entirely:
async function processTransaction(transaction) {
if (transaction.type !== "payment") {
console.log("Unexpected transaction type!");
return false; // Cancels execution without throwing an error!
}
}
If any of your tasks throws an error, it will be captured and bubbled up to the caller of iterateWithPool()
only after waiting for any pending tasks to complete.
If you can't use async iterators, you can use the AsyncPool
class directly for complete control:
const pool = new AsyncPool(options);
// Example loop that adds tasks to the pool.
for (const item of items) {
// Check if the pool has been canceled by a task.
if (pool.stopped) break;
// Add a task to the pool and wait until it's safe to add another.
// This method may also throw an Error if one if the tasks threw one.
await pool.add(async () => {
// Call some user function to do some work.
const result = await doSomeWork(item);
// If you returned false, request that the pool be canceled.
if (result === false) pool.cancel();
});
}
// We must wait for the pool to finish no matter what.
// This method may also throw an Error if one if the tasks threw one.
await pool.finish();
FAQs
Manage concurrent workers with optional rate-limiting
We found that async-pool-js 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.