node/benchmark/fixtures/import-builtins.mjs
Joyee Cheung 53ac82626c benchmark: add startup benchmark for ESM entrypoint
PR-URL: https://github.com/nodejs/node/pull/61769
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
2026-02-19 12:52:25 +00:00

34 lines
745 B
JavaScript

import 'node:async_hooks';
import 'node:assert';
import 'node:buffer';
import 'node:child_process';
import 'node:console';
import 'node:constants';
import 'node:crypto';
import 'node:cluster';
import 'node:dgram';
import 'node:dns';
import 'node:domain';
import 'node:events';
import 'node:fs';
import 'node:http';
import 'node:http2';
import 'node:https';
import 'node:module';
import 'node:net';
import 'node:os';
import 'node:path';
import 'node:perf_hooks';
import 'node:process';
import 'node:querystring';
import 'node:readline';
import 'node:repl';
import 'node:stream';
import 'node:string_decoder';
import 'node:timers';
import 'node:tls';
import 'node:tty';
import 'node:url';
import 'node:util';
import 'node:vm';
import 'node:zlib';