localhost_oa_based/src/repl.ts

12 lines
267 B
TypeScript

import { repl } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const replServer = await repl(AppModule);
replServer.setupHistory('.nestjs_repl_history', err => {
if (err) console.error(err);
});
}
bootstrap();