react-runtime-pipe 0.3.5 → 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.
Files changed (2) hide show
  1. package/README.md +11 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -563,16 +563,17 @@ export const saveUserAction =
563
563
 
564
564
  # Comparison
565
565
 
566
- | Createria | Redux | React Query | react-runtime-pipe |
567
- | -------------------- | ------ | ------------ | ------------------ |
568
- | Middleware Pipeline | ✅ | ❌ | ✅ |
569
- | Dependency Injection | ❌ | ❌ | ✅ |
570
- | Runtime Context | ❌ | ❌ | ✅ |
571
- | Event Bus | ❌ | ❌ | ✅ |
572
- | Orchestration Layer | ❌ | ⚠️ | ✅ |
573
- | Service Execution | | ⚠️ | ✅ |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-runtime-pipe",
3
- "version": "0.3.5",
3
+ "version": "1.0.0",
4
4
  "description": "A backend-style runtime for React with middleware, DI, plugins, and structured action execution.",
5
5
  "license": "MIT",
6
6
  "author": "Delpi.Kye",