UNPKG

create-clean-nest

Version:

NestJS template with Clean Architecture principles

9 lines (7 loc) 228 B
import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); await app.listen(process.env.PORT ?? 3000); } bootstrap();