Skip to content

Commit 988c2b5

Browse files
authored
docs: Added comparison between feathers and nest (#3109)
1 parent d06f2cf commit 988c2b5

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

docs/comparison.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ The following sections compare Feathers to other software choices that seem simi
55
- [Feathers vs Firebase](/feathers-vs-firebase)
66
- [Feathers vs Meteor](/feathers-vs-meteor)
77
- [Feathers vs Sails](/feathers-vs-sails)
8-
- [Feathers vs Loopback](/feathers-vs-loopback)
8+
- [Feathers vs Loopback](/feathers-vs-loopback)
9+
- [Feathers vs Nest](/feathers-vs-nest)

docs/feathers-vs-nest.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Feathers vs Nest
2+
3+
Nest is a backend framework that have similar capabilities with Feathers.
4+
5+
Nest uses dependency injection system and a module based architecture, Feathers uses service based architecture with a more functional approach.
6+
7+
Nest can only be written in TypeScript whereas Feathers supports JavaScript and TypeScript.
8+
9+
Feathers can generate client code for its server, Nest can't.
10+
11+
Nest uses RxJS for running interceptors, guards, filters or validation pipes. Feathers uses before, after and around hooks.
12+
13+
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 commit comments

Comments
 (0)