mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
0ff5987ce961bff1809265b8575ead69886169e6
Modern, powerful web application framework for Node.js.
Description
Nest is a powerful web framework for Node.js, which allows you to easily build efficient, scalable applications. It uses modern JavaScript, is built with TypeScript and introduces best concepts to JavaScript back-end world such as Dependency Injection (with IoC Container) and Separation of Concerns.
It is not just another framework. You do not have to wait on large community, because Nest is built with awesome, popular well-known libraries - Express and socket.io! It means, that you could quickly start using framework with no worries about a third party plugins.
Nest is inspired by Spring and Angular and is very much still a work in progress.
Installation
$ npm install nest.js
Quick Start
app.ts
import { NestApplication } from "nest";
export class Application implements NestApplication {
constructor(private application) {}
start() {
this.application.listen(3030, () => {
console.log("Application listen on port:", 3030);
});
}
}
License
Description
A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript 🚀
frameworkhacktoberfestjavascriptjavascript-frameworkmicroservicesnestnestjsnodenodejsnodejs-frameworktypescripttypescript-frameworkwebsockets
Readme
MIT
502 MiB
Languages
TypeScript
99.9%
