Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 493 Bytes

File metadata and controls

20 lines (14 loc) · 493 Bytes

nest js

NestJs is a progressive Node.js framework for building efficient and scalable server-side applications.

Installation

npx -p @nestjs/cli nest new [project]

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

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

For more details, visit the official NestJs documentation.