่ทณ่‡ณไธป่ฆๅ†…ๅฎน

๐Ÿ‘ฉโ€๐Ÿ’ป NestJS ่จญๅฎšๅ•Ÿๅ‹• Port

ๆ–ผๆช”ๆกˆ 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(3050);
}
bootstrap();