create-backlist 6.1.4 → 6.1.6
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,16 +54,16 @@ Our **3-Stage Compilation Process** ensures that one frontend codebase can gener
|
|
|
54
54
|
```mermaid
|
|
55
55
|
graph LR
|
|
56
56
|
subgraph Input [Stage 1: Analysis]
|
|
57
|
-
A[Frontend Files] -->|AST Parsing| B(Scanner Engine)
|
|
57
|
+
A["Frontend Files"] -->|AST Parsing| B("Scanner Engine")
|
|
58
58
|
end
|
|
59
59
|
subgraph Core [Stage 2: Abstraction]
|
|
60
|
-
B -->|Extracts Endpoints| C{Intermediate JSON Bridge}
|
|
60
|
+
B -->|Extracts Endpoints| C{"Intermediate JSON Bridge"}
|
|
61
61
|
end
|
|
62
62
|
subgraph Output [Stage 3: Generation]
|
|
63
|
-
C -->|Transpiles| D[Node.js (Express)]
|
|
64
|
-
C -->|Transpiles| E[Python (FastAPI)]
|
|
65
|
-
C -->|Transpiles| F[Java (Spring Boot)]
|
|
66
|
-
C -->|Transpiles| G[C# (.NET Core)]
|
|
63
|
+
C -->|Transpiles| D["Node.js (Express)"]
|
|
64
|
+
C -->|Transpiles| E["Python (FastAPI)"]
|
|
65
|
+
C -->|Transpiles| F["Java (Spring Boot)"]
|
|
66
|
+
C -->|Transpiles| G["C# (.NET Core)"]
|
|
67
67
|
end
|
|
68
68
|
style C fill:#ff9900,stroke:#333,stroke-width:2px,color:white
|
|
69
69
|
|