Skip to content

Instantly share code, notes, and snippets.

@imflamboyant
Created May 4, 2022 08:44
Show Gist options
  • Select an option

  • Save imflamboyant/600b373f7dd068f2683a2322290d42f8 to your computer and use it in GitHub Desktop.

Select an option

Save imflamboyant/600b373f7dd068f2683a2322290d42f8 to your computer and use it in GitHub Desktop.
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment