create-nexo 1.2.1 โ 1.3.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.
- package/README.md +21 -38
- package/dist/bin/nexo.js +360 -763
- package/package.json +6 -12
- package/dist/index.js +0 -1809
package/README.md
CHANGED
|
@@ -14,35 +14,21 @@
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
-
##
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
- ๐จ **
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
- ๐ **Architecture** โ Supports Feature-based, FSD, Atomic Design, and Clean Architecture.
|
|
33
|
-
- ๐ **Presets** โ Instant setups for SaaS, Dashboard, Landing Pages, and Minimal apps.
|
|
34
|
-
- ๐ **Dry Run Mode** โ Preview every file that will be created before touching your disk.
|
|
35
|
-
|
|
36
|
-
## ๐ Advanced NEXO Engine (v1.2.0+)
|
|
37
|
-
|
|
38
|
-
- โก **Persistent Disk Cache** โ Locally cached npm metadata for instant startup (<50ms).
|
|
39
|
-
- ๐ง **AI-Native Context** โ Auto-generated `.nexo/ai-context.md` and modular Cursor rules.
|
|
40
|
-
- ๐ **Arabic Context Awareness** โ Specialized AI instructions for RTL, fonts, and local terminology.
|
|
41
|
-
- ๐งช **Visual Testing** โ One-click Storybook or Ladle integration with automatic story generation.
|
|
42
|
-
- ๐ก๏ธ **Security Hardening** โ SBOM generation (CycloneDX), zero-trust patterns, and secrets protection.
|
|
43
|
-
- ๐ **Project Analytics** โ Real-time bundle size estimates and Lighthouse heuristic predictions.
|
|
44
|
-
- ๐ ๏ธ **Maintenance Suite** โ Power tools for project health: `doctor`, `health`, `undo`, and `migrate`.
|
|
45
|
-
- ๐ **API Client Store** โ Intelligent TS client generation from any OpenAPI/Swagger endpoint.
|
|
17
|
+
## ๏ฟฝ Core Features & Ecosystem
|
|
18
|
+
|
|
19
|
+
NEXO combines a cutting-edge tech stack with a powerful orchestration engine for an elite development experience.
|
|
20
|
+
|
|
21
|
+
- โ๏ธ **Modern Foundation** โ Native **React 19** support with **React Compiler**, built for speed on the leading **Vite** engine.
|
|
22
|
+
- ๐ **TypeScript First** โ Strict **TS 5.7+** standards out of the box for ultimate type safety and reliability.
|
|
23
|
+
- ๐จ **Visual Excellence** โ Premier styling with **Tailwind CSS v4**, Sass, and official **shadcn/ui** and **HeroUI** integrations.
|
|
24
|
+
- ๐ **RTL & Localization** โ Specialized support for **Arabic (RTL)** layouts and professional typography standards.
|
|
25
|
+
- ๐งฑ **Scalable Architecture** โ Professionally scaffolded **FSD**, **Feature-based**, and **Clean Architecture** patterns.
|
|
26
|
+
- ๐ง **AI-Native Context** โ Auto-generated `.nexo/ai-context.md` for perfect alignment with modern AI coding agents.
|
|
27
|
+
- โก **Instant Setup** โ Zero-latency I/O with memory-resident `package.json` management; saved exactly once per project.
|
|
28
|
+
- ๐ **Atomic Orchestration** โ Combined Git operations and parallel module loading for lightning-fast command execution.
|
|
29
|
+
- ๐ ๏ธ **Unified Maintenance** โ Total project health, security, and bundle auditing via the single `check` command.
|
|
30
|
+
- ๐ **Dry Run Safety** โ Preview every file and structural change before they ever touch your disk.
|
|
31
|
+
- ๐ฆ **Zero-Dependency Binary** โ Entire CLI is bundled into a single file (~226KB) for instant installation and startup.
|
|
46
32
|
|
|
47
33
|
---
|
|
48
34
|
|
|
@@ -67,12 +53,11 @@ nexo create my-app
|
|
|
67
53
|
| Command | Description |
|
|
68
54
|
|---------|-------------|
|
|
69
55
|
| `nexo create` | Start a new project with interactive prompts |
|
|
70
|
-
| `nexo
|
|
71
|
-
| `nexo
|
|
72
|
-
| `nexo
|
|
73
|
-
| `nexo
|
|
74
|
-
| `nexo
|
|
75
|
-
| `nexo docs generate`| Create comprehensive `ARCHITECTURE.md` for your project |
|
|
56
|
+
| `nexo wizard` | Guided project creation for beginners |
|
|
57
|
+
| `nexo presets` | List and use optimized project presets |
|
|
58
|
+
| `nexo check` | Run system & project health checks |
|
|
59
|
+
| `nexo check --system` | Check system environment only (Node, npm, Git) |
|
|
60
|
+
| `nexo check --project` | Check project health only (security, lockfiles, bundle) |
|
|
76
61
|
| `nexo update` | Self-update Nexo CLI to the latest version |
|
|
77
62
|
|
|
78
63
|
---
|
|
@@ -87,7 +72,7 @@ nexo create my-app
|
|
|
87
72
|
### Styling & UI
|
|
88
73
|
- **Tailwind CSS v4** โ Utility-first with the latest engine features.
|
|
89
74
|
- **shadcn/ui** โ Beautiful, accessible, and fully customizable.
|
|
90
|
-
- **
|
|
75
|
+
- **HeroUI** โ Feature-rich component libraries.
|
|
91
76
|
|
|
92
77
|
### State & Data
|
|
93
78
|
- **Zustand / Redux Toolkit** โ Scalable state management.
|
|
@@ -102,7 +87,6 @@ Nexo is designed for the age of AI. Every project includes:
|
|
|
102
87
|
- **`.nexo/ai-context.md`**: A comprehensive source of truth for your stack, used by LLMs to provide more accurate code.
|
|
103
88
|
- **Modular Cursor Rules**: Specialized `.cursorrules` that adapt to your specific choices (React, Tailwind, Zustand, etc.).
|
|
104
89
|
- **Architecture Context**: Explains project structure and patterns to AI agents for perfect code generation.
|
|
105
|
-
|
|
106
90
|
---
|
|
107
91
|
|
|
108
92
|
## ๐ง Development & Contribution
|
|
@@ -130,4 +114,3 @@ MIT ยฉ 2026 **Mohamed Shaban**
|
|
|
130
114
|
[Report Bug](https://github.com/Moshaban09/create-nexo/issues) โข [Request Feature](https://github.com/Moshaban09/create-nexo/issues)
|
|
131
115
|
|
|
132
116
|
</div>
|
|
133
|
-
|