create-react-scaffold-cli 0.1.2 → 0.1.3
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 +33 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# create-react-scaffold-cli
|
|
2
|
+
|
|
3
|
+
A CLI to scaffold a **feature-first React application** with clear boundaries and long-term maintainability.
|
|
4
|
+
|
|
5
|
+
This scaffold enforces a simple rule:
|
|
6
|
+
|
|
7
|
+
> **Business logic lives in features.
|
|
8
|
+
> Reusable primitives live in shared.
|
|
9
|
+
> App only wires things together.**
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Why this exists
|
|
14
|
+
|
|
15
|
+
- unclear ownership
|
|
16
|
+
- massive `components/` folders
|
|
17
|
+
- bloated `shared/` directories
|
|
18
|
+
- fragile cross-feature imports
|
|
19
|
+
|
|
20
|
+
This scaffold exists to:
|
|
21
|
+
|
|
22
|
+
- enforce **feature ownership**
|
|
23
|
+
- make refactoring safe
|
|
24
|
+
- allow deleting features without breaking the app
|
|
25
|
+
- keep architecture understandable as the app grows
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Quick Start
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx create-react-scaffold-cli
|
|
33
|
+
```
|