๐Ÿ“ฆ nestjs / typescript-starter

๐Ÿ“„ main.ts ยท 9 lines
1
2
3
4
5
6
7
8
9import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(3000);
}
bootstrap();