UNPKG

ryuu.cli

Version:

Ryuu's Timesaver CLI

10 lines (8 loc) 280 B
import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule, { cors: true }); app.getHttpAdapter().getInstance().set("json spaces", 2) await app.listen(5000); } bootstrap();