0% found this document useful (0 votes)
12 views1 page

Nestjs

Nest (NestJS) is a framework designed for building efficient and scalable Node.js server-side applications, supporting both TypeScript and JavaScript. It incorporates principles from Object Oriented Programming, Functional Programming, and Functional Reactive Programming while utilizing HTTP server frameworks like Express and Fastify. Nest offers an abstraction layer over these frameworks but also allows direct access to their APIs for greater flexibility in using third-party modules.

Uploaded by

sraleph
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Nestjs

Nest (NestJS) is a framework designed for building efficient and scalable Node.js server-side applications, supporting both TypeScript and JavaScript. It incorporates principles from Object Oriented Programming, Functional Programming, and Functional Reactive Programming while utilizing HTTP server frameworks like Express and Fastify. Nest offers an abstraction layer over these frameworks but also allows direct access to their APIs for greater flexibility in using third-party modules.

Uploaded by

sraleph
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Introduction

Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It
uses progressive JavaScript, is built with and fully supports TypeScript (yet still enables developers
to code in pure JavaScript) and combines elements of OOP (Object Oriented Programming), FP
(Functional Programming), and FRP (Functional Reactive Programming).
Under the hood, Nest makes use of robust HTTP Server frameworks like Express (the default) and
optionally can be configured to use Fastify as well!
Nest provides a level of abstraction above these common Node.js frameworks (Express/Fastify), but
also exposes their APIs directly to the developer. This gives developers the freedom to use the
myriad of third-party modules which are available for the underlying platform

You might also like