create-nexo 1.8.1 → 1.8.2
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 +32 -8
- package/dist/bin/nexo.js +150 -150
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -96,17 +96,41 @@ npm create nexo@latest
|
|
|
96
96
|
> [!TIP]
|
|
97
97
|
> **Execution**: Always use `npx create-nexo` for the default command or `npx -p create-nexo nexo [command]` for specific actions.
|
|
98
98
|
|
|
99
|
+
### Project Creation
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
# Interactive mode (Recommended for first-time users)
|
|
103
|
+
npx create-nexo my-app
|
|
104
|
+
|
|
105
|
+
# Quick setup with a preset
|
|
106
|
+
npx create-nexo my-app --preset=dashboard
|
|
107
|
+
|
|
108
|
+
# Arabic & RTL support
|
|
109
|
+
npx create-nexo my-app --rtl
|
|
110
|
+
|
|
111
|
+
# Preview changes without creating files
|
|
112
|
+
npx create-nexo my-app --dry-run
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Commands Reference
|
|
116
|
+
|
|
117
|
+
| Command | Description |
|
|
118
|
+
|---------|-------------|
|
|
119
|
+
| `npx create-nexo <app-name>` | Start a new project with interactive prompts |
|
|
120
|
+
| `npx create-nexo <app-name> --preset=dashboard` | Use a preset (saas, dashboard, landing, etc.) |
|
|
121
|
+
| `npx create-nexo <app-name> --rtl` | Enable Arabic & RTL support |
|
|
122
|
+
| `npx create-nexo <app-name> --dry-run` | Preview changes without creating files |
|
|
123
|
+
| `npx create-nexo <app-name> --audit` | Enable security audit during installation |
|
|
124
|
+
| `npx create-nexo <app-name> --strict` | Enable strict dependency resolution |
|
|
125
|
+
|
|
126
|
+
### Utility Commands
|
|
127
|
+
|
|
99
128
|
| Command | Description |
|
|
100
129
|
|---------|-------------|
|
|
101
|
-
| `npx create-nexo` | Start a new project with interactive prompts |
|
|
102
|
-
| `npx create-nexo --audit` | Enable security audit during installation |
|
|
103
|
-
| `npx create-nexo --strict` | Enable strict dependency resolution |
|
|
104
|
-
| `npx create-nexo --template` | Clone a project from a GitHub template |
|
|
105
|
-
| `npx create-nexo --rtl` | Create an Arabic & RTL project instantly |
|
|
106
130
|
| `npx -p create-nexo nexo wizard` | Guided project creation for beginners (Alias: `w`) |
|
|
107
|
-
| `npx -p create-nexo nexo presets` | List
|
|
108
|
-
| `npx -p create-nexo nexo check` | Run system & project health checks
|
|
109
|
-
| `npx -p create-nexo nexo update` | Self-update
|
|
131
|
+
| `npx -p create-nexo nexo presets` | List available project presets |
|
|
132
|
+
| `npx -p create-nexo nexo check` | Run system & project health checks |
|
|
133
|
+
| `npx -p create-nexo nexo update` | Self-update to the latest version |
|
|
110
134
|
|
|
111
135
|
---
|
|
112
136
|
|