devlog_zz

[NestJS] #0 INTRODUCTION 본문

Back End/NestJS

[NestJS] #0 INTRODUCTION

YJ_SW 2022. 9. 15. 17:02
728x90

NestJS로 API 만들기 - nomadcoders

0.1 Welcome

NestJS는 node.js 위에서 움직이는 프레임워크 node.js에 백엔드를 구성할 수 있게 해준다.

사실, express 위에서 움직이는 것이기도 하다. express 이용, ( express는 모든 node.js어플리케이션의 초석이 되는 존재 )

NesJS에는 구조와 룰이 있다. 이를 따르기만 하면 큰 규모의 백엔드를 쉽게 구성할 수 있다.

⇒ Node.js의 프레임워크로 Express 위에서 움직인다.

( 최신 언어 기능을 활용하므로 바닐라 Javascript와 함께 사용하려면 Babel 컴파일러가 필요하다. )

0.2 Requirements

inaomnia rest : 엔드포인트 테스트

https://insomnia.rest/download

0.3 Project Setup

@nestjs/cli 설치

npm i -g @nestjs/cli

nest new project-name

출처

https://nomadcoders.co/nestjs-fundamentals

https://docs.nestjs.com/

728x90

'Back End > NestJS' 카테고리의 다른 글

[NestJS] #4 E2E Testing  (0) 2022.09.15
[NestJS] #3 Unit Testing  (0) 2022.09.15
[NestJS] #2 Rest API  (0) 2022.09.15
[NestJS] #1 Architecture of NestJS  (0) 2022.09.15
Comments