main.ts 208 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); await app.listen(3000); } bootstrap();