
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Execute several async functions and get a callback when they are all done
Call several asynchronous functions and invoke a callback 'after all' of them are done.
You can install it with npm.
npm install after-all
var afterAll = require('after-all');
var next = afterAll(function(err) {
if (err) return console.log(err); // one of the asynchronous calls had an error
console.log('Yay! Everything is done');
});
// The above inner function will only be called when all of these asynchronous calls are done
someAsynchronousCall1({foo:'bar'}, next());
someAsynchronousCall2({val:2}, next(function(err, res) {
// If you want to do something with the returned value, you can pass a function
if (err) return;
console.log('This was returned: '+res);
}));
Imagine you have to create a dashboard page which has a list of customers a list products, the total amount of sales and some more information.
Now, the queries to get this information are independent, yet we tend to wait for one to be finished to start the next. We may be able to increase the performance by starting some of this queries at the same time and waiting for the callbacks.
We can use after-all to do something like this.
app.get('/dashboard.json', function(req, res) {
var resp = {};
var next = afterAll(function() {
res.end(resp);
});
db.findCustomers(next(function(err, docs) {
resp.customers = docs;
}));
var cb = next(); // wrapping the callback is optional
db.findProducts(function(err, docs) {
db.findProductsSales(function(sales) {
resp.products = docs;
resp.productsSales = sales;
cb();
});
});
db.findTodaySalesAmount(next(function(err, amount) {
resp.todaySales = amount;
}));
db.findLastMonthSalesAmount(next(function(err, amount) {
resp.lastMonthSales = amount;
}));
});
As you can see, passing a callback to the next
function is optional and it can be
useful to not pass any when you are doing more than one sequetial async operations as
in the example above.
Also notice that all the calls to next
must be done on the same tick.
If an error is passed as the first parameter to the next
callback, the
final callback will be called immediately and the error will be passed to
it as the first argument.
MIT
FAQs
Execute several async functions and get a callback when they are all done
The npm package after-all receives a total of 2,101 weekly downloads. As such, after-all popularity was classified as popular.
We found that after-all 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.