setImmediate
в Express?app.use((req, res, next) => {
setImmediate(() => {
// Тяжелая синхронная операция
ultraMegaLongComputing();
next();
});
})
app.use((req, res, next) => {
// Тяжелая синхронная операция
ultraMegaLongComputing();
next();
})