mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
18 lines
359 B
JavaScript
18 lines
359 B
JavaScript
import { bench, run } from "mitata";
|
|
|
|
const count = 100;
|
|
|
|
bench(`fetch(https://example.com) x ${count}`, async () => {
|
|
const requests = new Array(count);
|
|
|
|
for (let i = 0; i < requests.length; i++) {
|
|
requests[i] = fetch(`https://www.example.com/?cachebust=${i}`).then((r) =>
|
|
r.text(),
|
|
);
|
|
}
|
|
|
|
await Promise.all(requests);
|
|
});
|
|
|
|
await run();
|