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);
Try it live

Open this example in StackBlitz with a fully wired Node.js runtime.

Open in StackBlitz