@@ -14,7 +14,6 @@ At the root, you’ll find global configuration and technology-specific entry po
14
14
- Per-language folders for source code:
15
15
- ` react/ ` – Frontend projects built with React and TypeScript
16
16
- ` dotnet/ ` – .NET Core backend projects and libraries
17
- - ` python/ ` – Analytics or scripting logic
18
17
- ... and any other language supported by Nx
19
18
20
19
> 💡 ** Why this structure?**
@@ -38,45 +37,27 @@ Inside each language-specific folder:
38
37
39
38
Within ` apps/ ` and ` libs/ ` , each project is grouped by its business domain or feature area.
40
39
41
- ### React Example
42
-
43
- ```
44
- react/
45
- └── libs/
46
- └── transactions/
47
- ├── data-access/
48
- ├── ui/
49
- └── utils/
50
- ```
51
-
52
40
### Multi-Language Example
53
41
54
42
```
55
- react/
56
- ├── apps/
57
- │ └── dashboard/ # React frontend application
58
- └── libs/
59
- └── transactions/
60
- ├── ui/ # UI components related to transactions
61
- ├── data-access/ # API clients or hooks (e.g., React Query, Axios)
62
- └── utils/ # Shared utilities specific to the transactions domain
63
-
64
43
dotnet/
65
44
├── apps/
66
- │ └── transactions-api/ # .NET Core Web API for transactions
45
+ │ ├── transactions-api/ # .NET Core Web API for transactions
46
+ │ └── transactions-api-test/ # Integration or unit tests for API
67
47
└── libs/
68
- └── transactions/
69
- ├── domain/ # Domain models and business logic
70
- ├── data-access/ # EF Core repositories or DB access logic
71
- └── services/ # Application services for orchestration
48
+ ├── transactions-domain-model/ # Domain models and core logic
49
+ └── transactions-domain-model-test/ # Tests for the domain logic
72
50
73
- python/
51
+ react/
52
+ ├── apps/
53
+ │ ├── transactions/ # React frontend app
54
+ │ └── transactions-e2e/ # End-to-end Cypress tests
74
55
└── libs/
75
- └ ── transactions/
76
- └── analytics / # Data analytics logic (e.g., ML models or pandas pipelines)
56
+ ├ ── transactions-data-access/ # API clients or hooks (e.g., React Query)
57
+ └── transactions-ui / # UI components for the transaction domain
77
58
```
78
59
79
- This demonstrates how a single domain (e.g., ` transactions ` ) can exist across stacks, maintaining modularity and encouraging collaboration .
60
+ This reflects a real-world implementation of a shared ` transactions ` domain across multiple stacks .
80
61
81
62
---
82
63
0 commit comments