RuntimeJS / API
Quickstart
Get up and running in 30 seconds. RuntimeJS is ESM-first and tree-shakeable.
ts
import { parallel, monitor } from "runtimejs";
monitor.start();
const pages = await parallel(urls, fetch, { concurrency: 16 });
console.log("done", pages.length);