create-nexo 1.7.0 → 1.7.1
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 +30 -0
- package/dist/bin/nexo.js +117 -117
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,6 +43,36 @@ NEXO combines a cutting-edge tech stack with a powerful orchestration engine for
|
|
|
43
43
|
|
|
44
44
|
---
|
|
45
45
|
|
|
46
|
+
## 📂 Project Structure
|
|
47
|
+
|
|
48
|
+
NEXO generates a clean, scalable structure tailored to your choices (e.g., FSD, Feature-based).
|
|
49
|
+
|
|
50
|
+
```plaintext
|
|
51
|
+
my-app/
|
|
52
|
+
├── public/ # Static assets
|
|
53
|
+
├── src/
|
|
54
|
+
│ ├── app/ # App providers & global layout
|
|
55
|
+
│ ├── assets/ # Images, fonts, icons
|
|
56
|
+
│ ├── components/ # Shared UI components
|
|
57
|
+
│ ├── config/ # Environment & app config
|
|
58
|
+
│ ├── features/ # Feature-based modules (slices)
|
|
59
|
+
│ ├── hooks/ # Shared React hooks
|
|
60
|
+
│ ├── lib/ # Utils, helpers, and third-party setups
|
|
61
|
+
│ ├── pages/ # Route components
|
|
62
|
+
│ ├── styles/ # Global styles (Tailwind/CSS Modules)
|
|
63
|
+
│ ├── types/ # Shared TypeScript interfaces
|
|
64
|
+
│ ├── App.tsx # Main entry component
|
|
65
|
+
│ └── main.tsx # Application entry point
|
|
66
|
+
├── .nexo/ # AI Context & Metadata
|
|
67
|
+
├── .cursorrules # AI-specific coding rules
|
|
68
|
+
├── DOCS.md # Documentation for your specific stack
|
|
69
|
+
├── index.html
|
|
70
|
+
├── package.json
|
|
71
|
+
└── vite.config.ts
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
46
76
|
## 📦 Quick Start
|
|
47
77
|
|
|
48
78
|
```bash
|