Update Readme.md

This commit is contained in:
Kamil Myśliwiec
2017-02-04 23:41:52 +01:00
committed by GitHub
parent 0a1631a963
commit 6a7e8496d3

View File

@@ -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)