Nest.js

Nest Overview

Jeffrey Yoon
Nest.js Nest.js는 타입스크립트를 이용해 웹 서버를 구축하는 웹 프레임워크 중 하나이다. 기존에 node.js 기반으로 express 웹 프레임워크를 사용했으나 아키텍처 또는 node.js 기반의 규모가 큰 프로젝트에서 개발자들에게 안정적이며, 확장 가능한 웹 서버를 구축하기 위해 탄생했다. Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with and fully supports TypeScript and combines elements of OOP, FP, and FRP. Nest가 재미있는 점은 서버를 구성하는 아키텍쳐 요소가 모듈 이라는 점인데, 각각의 모듈이 하나의 모듈로 구성되면서 서버를 구축해 나아가는 방식이다.