S SmartDocs
シリーズ: nest.js typescript 8 行 · 更新日 2026-02-03

main.ts

nest.js/02-intermediate/demo-intermediate/src/main.ts

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();

関連記事