-
-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Added comparison between feathers and nest (#3109)
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Feathers vs Nest | ||
|
||
Nest is a backend framework that have similar capabilities with Feathers. | ||
|
||
Nest uses dependency injection system and a module based architecture, Feathers uses service based architecture with a more functional approach. | ||
|
||
Nest can only be written in TypeScript whereas Feathers supports JavaScript and TypeScript. | ||
|
||
Feathers can generate client code for its server, Nest can't. | ||
|
||
Nest uses RxJS for running interceptors, guards, filters or validation pipes. Feathers uses before, after and around hooks. | ||
|
||
For more details on the difference between them you can read more here: [FeathersJS vs NestJS - Compared In 3 Key Areas](https://blog.feathersjs.com/feathersjs-vs-nestjs-compared-in-3-key-areas-427def783555) |