Skip to content

Commit

Permalink
Resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil.mysliwiec committed Mar 25, 2017
2 parents 101d90f + 9441c03 commit a909556
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## 1.0.0-BETA-1
## 1.0.0-BETA-1 (23.03.2017)

- @Inject -> @Dependencies
- @Inject decorator for custom constructor parameters,
- Custom providers support (useClass, useValue, useFactory)

## 1.0.0-ALPHA-23
## 1.0.0-ALPHA-23 (19.03.2017)

- Microservices support (TCP & Redis transports)
- NestRunner -> NestFactory
- Simplify application initialization & configuration
- Added abillity to pass custom express instance
- @Inject decorator for ES6+
- SocketGateway -> WebSocketGateway
- GatewayServer -> WebSocketServer
- GatewayServer -> WebSocketServer
19 changes: 9 additions & 10 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,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 bring best concepts to JavaScript back-end world such as Dependency Injection (with IoC Container) and Separation of Concerns.
Nest is a powerful web framework for [Node.js](http://nodejs.org), which helps you to effortlessly build efficient, scalable applications. It uses modern JavaScript, is built with [TypeScript](http://www.typescriptlang.org) and combines best concepts from both OOP (Object Oriented Progamming) and FP (Functional Programming).

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.

Expand All @@ -33,13 +32,15 @@ We want to create scalable, modern and easy to maintain applications. Nest helps

## Features

- Compatible with both TypeScript and ES6 (I recommend to use [TypeScript](http://www.typescriptlang.org))
- Reactive **microservices** support with messages patterns (transport via TCP / [Redis](https://redis.io/))
- Compatible with both TypeScript and ES6 (I strongly recommend to use [TypeScript](http://www.typescriptlang.org))
- Based on well-known libraries ([Express](https://github.com/expressjs/express) / [socket.io](https://github.com/socketio/socket.io)) so you could share your experience
- Easy to learn - syntax is similar to [Angular](https://angular.io/) / [Spring](https://spring.io) (Java)
- Dependency Injection, Inversion of Control Container
- Dependency Injection, built-in **Inversion of Control** container
- Exceptions handler layer (helps to focus on logic)
- Own modularity system
- Sockets module (based on [socket.io](https://github.com/socketio/socket.io))
- Own modularity system (split your system into reusable modules)
- **WebSockets** module (based on [socket.io](https://github.com/socketio/socket.io))
- Testing utilities

## Documentation & Quick Start

Expand All @@ -54,11 +55,9 @@ We want to create scalable, modern and easy to maintain applications. Nest helps

Nest is very much still a work in progress. There is still some things to finish:

- Better test utilities
- Examples(!)
- Exception filters
- Starter repos
- Validation helpers
- Increase test coverage
- Gateways middleware
- and more...

Expand All @@ -70,7 +69,7 @@ Author - [Kamil Myśliwiec](http://kamilmysliwiec.com)

[MIT](LICENSE)

[npm-image]: https://img.shields.io/npm/v/nest.js.svg
[npm-image]: https://badge.fury.io/js/nest.js.svg
[npm-url]: https://npmjs.org/package/nest.js
[downloads-image]: https://img.shields.io/npm/dm/nest.js.svg
[downloads-url]: https://npmjs.org/package/nest.js
Expand Down

0 comments on commit a909556

Please sign in to comment.