react-server675fbba4
react-servertreemainexamplesnestjssrcmain.ts
examples/nestjs/src/main.tsts212 Bb223220b
import { NestFactory } from "@nestjs/core";

import { AppModule } from "./app.module.js";

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(3000);
}
bootstrap();