main.ts 251 B

123456789
  1. import { NestFactory } from '@nestjs/core';
  2. import { AppModule } from './app.module';
  3. async function bootstrap() {
  4. const app = await NestFactory.create(AppModule);
  5. await app.listen(3000);
  6. }
  7. // tslint:disable:no-floating-promises
  8. bootstrap();