mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
4380a09a05
To fix bugs around detection of when node emulation is required, we will just eagerly initialize it. The improvements we make to reduce the impact of the startup time: - [x] Process stdin/stdout/stderr are lazily created - [x] node.js global proxy no longer allocates on each access check - [x] Process checks for `beforeExit` listeners before doing expensive shutdown work - [x] Process should avoid adding global event handlers until listeners are added Benchmarking this PR (`89de7e1ff`) vs main (`41cad2179`) ``` 12:36 $ third_party/prebuilt/mac/hyperfine --warmup 100 -S none './deno-41cad2179 run ./empty.js' './deno-89de7e1ff run ./empty.js' Benchmark 1: ./deno-41cad2179 run ./empty.js Time (mean ± σ): 24.3 ms ± 1.6 ms [User: 16.2 ms, System: 6.0 ms] Range (min … max): 21.1 ms … 29.1 ms 115 runs Benchmark 2: ./deno-89de7e1ff run ./empty.js Time (mean ± σ): 24.0 ms ± 1.4 ms [User: 16.3 ms, System: 5.6 ms] Range (min … max): 21.3 ms … 28.6 ms 126 runs ``` Fixes https://github.com/denoland/deno/issues/20142 Fixes https://github.com/denoland/deno/issues/15826 Fixes https://github.com/denoland/deno/issues/20028
58 lines
2 KiB
JavaScript
58 lines
2 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// deno-lint-ignore-file
|
|
|
|
const internals = globalThis.__bootstrap.internals;
|
|
const requireImpl = internals.requireImpl;
|
|
import { nodeGlobals } from "ext:deno_node/00_globals.js";
|
|
import "node:module";
|
|
|
|
globalThis.nodeBootstrap = function (usesLocalNodeModulesDir, argv0) {
|
|
initialize(usesLocalNodeModulesDir, argv0);
|
|
};
|
|
|
|
let initialized = false;
|
|
|
|
function initialize(
|
|
usesLocalNodeModulesDir,
|
|
argv0,
|
|
) {
|
|
if (initialized) {
|
|
throw Error("Node runtime already initialized");
|
|
}
|
|
initialized = true;
|
|
if (usesLocalNodeModulesDir) {
|
|
requireImpl.setUsesLocalNodeModulesDir();
|
|
}
|
|
const nativeModuleExports = requireImpl.nativeModuleExports;
|
|
nodeGlobals.Buffer = nativeModuleExports["buffer"].Buffer;
|
|
nodeGlobals.clearImmediate = nativeModuleExports["timers"].clearImmediate;
|
|
nodeGlobals.clearInterval = nativeModuleExports["timers"].clearInterval;
|
|
nodeGlobals.clearTimeout = nativeModuleExports["timers"].clearTimeout;
|
|
nodeGlobals.console = nativeModuleExports["console"];
|
|
nodeGlobals.global = globalThis;
|
|
nodeGlobals.process = nativeModuleExports["process"];
|
|
nodeGlobals.setImmediate = nativeModuleExports["timers"].setImmediate;
|
|
nodeGlobals.setInterval = nativeModuleExports["timers"].setInterval;
|
|
nodeGlobals.setTimeout = nativeModuleExports["timers"].setTimeout;
|
|
nodeGlobals.performance = nativeModuleExports["perf_hooks"].performance;
|
|
|
|
// FIXME(bartlomieju): not nice to depend on `Deno` namespace here
|
|
// but it's the only way to get `args` and `version` and this point.
|
|
internals.__bootstrapNodeProcess(argv0, Deno.args, Deno.version);
|
|
internals.__initWorkerThreads();
|
|
// `Deno[Deno.internal].requireImpl` will be unreachable after this line.
|
|
delete internals.requireImpl;
|
|
}
|
|
|
|
function loadCjsModule(moduleName, isMain, inspectBrk) {
|
|
if (inspectBrk) {
|
|
requireImpl.setInspectBrk();
|
|
}
|
|
requireImpl.Module._load(moduleName, null, { main: isMain });
|
|
}
|
|
|
|
internals.node = {
|
|
initialize,
|
|
loadCjsModule,
|
|
};
|