react-runtime-pipe 0.3.4 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -563,16 +563,17 @@ export const saveUserAction =
|
|
|
563
563
|
|
|
564
564
|
# Comparison
|
|
565
565
|
|
|
566
|
-
|
|
|
567
|
-
|
|
568
|
-
| Middleware Pipeline
|
|
569
|
-
| Dependency Injection | ❌
|
|
570
|
-
| Runtime Context
|
|
571
|
-
| Event Bus
|
|
572
|
-
| Orchestration Layer
|
|
573
|
-
|
|
|
574
|
-
| Plugin System
|
|
575
|
-
|
|
566
|
+
| Criteria | react-runtime-pipe | Redux | React Query |
|
|
567
|
+
|---------------------|--------------------|-------|-------------|
|
|
568
|
+
| Middleware Pipeline | ✅ | ⚠️ | ❌ |
|
|
569
|
+
| Dependency Injection| ✅ | ❌ | ❌ |
|
|
570
|
+
| Runtime Context | ✅ | ❌ | ❌ |
|
|
571
|
+
| Event Bus | ✅ | ❌ | ❌ |
|
|
572
|
+
| Orchestration Layer | ✅ | ❌ | ⚠️ |
|
|
573
|
+
| Async Data Handling | ⚠️ | ❌ | ✅ |
|
|
574
|
+
| Plugin System | ✅ | ❌ | ❌ |
|
|
575
|
+
| Action-based API | ✅ | ❌ | ❌ |
|
|
576
|
+
| Execution Pipeline | ✅ | ❌ | ❌ |
|
|
576
577
|
---
|
|
577
578
|
|
|
578
579
|
# Philosophy
|
package/package.json
CHANGED