Skip to content

Commit

Permalink
docs: Added comparison between feathers and nest (#3109)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkadirtan committed Apr 12, 2023
1 parent d06f2cf commit 988c2b5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ The following sections compare Feathers to other software choices that seem simi
- [Feathers vs Firebase](/feathers-vs-firebase)
- [Feathers vs Meteor](/feathers-vs-meteor)
- [Feathers vs Sails](/feathers-vs-sails)
- [Feathers vs Loopback](/feathers-vs-loopback)
- [Feathers vs Loopback](/feathers-vs-loopback)
- [Feathers vs Nest](/feathers-vs-nest)
13 changes: 13 additions & 0 deletions docs/feathers-vs-nest.md
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)

0 comments on commit 988c2b5

Please sign in to comment.