Skip to content

Instantly share code, notes, and snippets.

@greg-nagy
Created August 14, 2019 13:32
Show Gist options
  • Save greg-nagy/8adcd839664b7ce257b283da8fa72fb4 to your computer and use it in GitHub Desktop.
Save greg-nagy/8adcd839664b7ce257b283da8fa72fb4 to your computer and use it in GitHub Desktop.
nestjs 6.5.4
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