mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 22:42:51 +00:00

PR-URL: https://github.com/nodejs/node/pull/49869 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
// User passed `-e` or `--eval` arguments to Node without `-i` or
|
|
// `--interactive`.
|
|
|
|
const {
|
|
ObjectDefineProperty,
|
|
RegExpPrototypeExec,
|
|
globalThis,
|
|
} = primordials;
|
|
|
|
const {
|
|
prepareMainThreadExecution,
|
|
markBootstrapComplete,
|
|
} = require('internal/process/pre_execution');
|
|
const { evalModule, evalScript } = require('internal/process/execution');
|
|
const { addBuiltinLibsToObject } = require('internal/modules/helpers');
|
|
|
|
const { getOptionValue } = require('internal/options');
|
|
|
|
prepareMainThreadExecution();
|
|
addBuiltinLibsToObject(globalThis, '<eval>');
|
|
markBootstrapComplete();
|
|
|
|
const source = getOptionValue('--eval');
|
|
const print = getOptionValue('--print');
|
|
const loadESM = getOptionValue('--import').length > 0 || getOptionValue('--experimental-loader').length > 0;
|
|
if (getOptionValue('--input-type') === 'module' ||
|
|
(getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== 'commonjs')) {
|
|
evalModule(source, print);
|
|
} else {
|
|
// For backward compatibility, we want the identifier crypto to be the
|
|
// `node:crypto` module rather than WebCrypto.
|
|
const isUsingCryptoIdentifier =
|
|
getOptionValue('--experimental-global-webcrypto') &&
|
|
RegExpPrototypeExec(/\bcrypto\b/, source) !== null;
|
|
const shouldDefineCrypto = isUsingCryptoIdentifier && internalBinding('config').hasOpenSSL;
|
|
|
|
if (isUsingCryptoIdentifier && !shouldDefineCrypto) {
|
|
// This is taken from `addBuiltinLibsToObject`.
|
|
const object = globalThis;
|
|
const name = 'crypto';
|
|
const setReal = (val) => {
|
|
// Deleting the property before re-assigning it disables the
|
|
// getter/setter mechanism.
|
|
delete object[name];
|
|
object[name] = val;
|
|
};
|
|
ObjectDefineProperty(object, name, { __proto__: null, set: setReal });
|
|
}
|
|
evalScript('[eval]',
|
|
shouldDefineCrypto ? (
|
|
print ? `let crypto=require("node:crypto");{${source}}` : `(crypto=>{{${source}}})(require('node:crypto'))`
|
|
) : source,
|
|
getOptionValue('--inspect-brk'),
|
|
print,
|
|
loadESM);
|
|
}
|