mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
Update Readme.md
This commit is contained in:
22
Readme.md
22
Readme.md
@@ -8,8 +8,7 @@
|
||||
## Description
|
||||
|
||||
Nest is a powerful web framework for [Node.js](http://nodejs.org), which allows you to easily build efficient, scalable applications.
|
||||
It uses modern JavaScript, is built with [TypeScript](http://www.typescriptlang.org) and introduces best concepts to JavaScript back-end world such as
|
||||
Dependency Injection (with IoC Container) and Separation of Concerns.
|
||||
It uses modern JavaScript, is built with [TypeScript](http://www.typescriptlang.org) 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](https://github.com/expressjs/express) and [socket.io](https://github.com/socketio/socket.io)! It means, that you could quickly start using framework with no worries about a third party plugins.
|
||||
|
||||
@@ -21,6 +20,25 @@ Nest is inspired by [Spring](https://spring.io) and [Angular](https://angular.io
|
||||
$ npm install nest.js
|
||||
```
|
||||
|
||||
## Quick Start
|
||||
|
||||
```bash
|
||||
```#app.ts
|
||||
```
|
||||
```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
|
||||
|
||||
[MIT](LICENSE)
|
||||
|
||||
Reference in New Issue
Block a user