NestJS

0 min read


A progressive Node.js framework for building efficient, reliable and scalable server-side applications.

Okay ya guys, jadi NestJS ini framework yang sering dipakai untuk build backend di NodeJS ya.. pada NestJS dapat melakukan integrasi database menggunakan library atau ORM seperti MikroORM, Sequelize, KnexJS, TypeORM dan Prisma.

Introduction

npm i -g @nestjs/cli
nest new project-name

Simple Main.ts

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

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

Documentation: Documentation | NestJS – A progressive Node.js framework
Okay cukup sekian dulu ya cyaaa…..

Bima Sena

Leave a Reply

Your email address will not be published. Required fields are marked *