create-nexa-app 1.0.16 β 1.0.18
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 +6 -73
- package/bin/nexa.js +14 -1456
- package/package.json +1 -1
- package/template/public/index.html +45 -1
- package/template/src/components/Home/Home.css +13 -0
- package/template/src/components/Home/Home.jsx +9 -1
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
π **Nexa CLI** - Powered by **Conscious Neurons LLC**
|
|
6
6
|
π https://consciousneurons.com
|
|
7
|
+
π https://nexajs.dev/
|
|
7
8
|
Built by Salman Saeed: https://salmansaeed.us
|
|
8
9
|
|
|
9
10
|
---
|
|
@@ -244,79 +245,11 @@ Alba Gold Systems
|
|
|
244
245
|
|
|
245
246
|
**Nexa = Cleaner UI + Prebuilt Structure**
|
|
246
247
|
|
|
247
|
-
````
|
|
248
|
-
|
|
249
|
-
---
|
|
250
|
-
|
|
251
|
-
# β
Updated Help (aligned with README)
|
|
252
|
-
|
|
253
|
-
```js
|
|
254
|
-
function printUsage() {
|
|
255
|
-
console.log(`
|
|
256
|
-
${C.cyan}${C.bold}π Nexa CLI Usage${C.reset}
|
|
257
|
-
|
|
258
|
-
${C.cyan}React Power.${C.reset}
|
|
259
|
-
${C.yellow}Angular Simplicity.${C.reset}
|
|
260
|
-
${C.green}Vite Speed.${C.reset}
|
|
261
|
-
${C.blue}Cleaner UI.${C.reset}
|
|
262
|
-
${C.gray}Prebuilt structure.${C.reset}
|
|
263
|
-
|
|
264
|
-
${C.bold}${C.blue}π Run commands from project root (not src)${C.reset}
|
|
265
|
-
|
|
266
|
-
${C.bold}${C.cyan}Create App${C.reset}
|
|
267
|
-
|
|
268
|
-
${C.green}npx create-nexa-app my-app${C.reset}
|
|
269
|
-
${C.green}npx create-nexa-app my-app --base /portal/${C.reset}
|
|
270
|
-
|
|
271
|
-
${C.bold}${C.cyan}Commands${C.reset}
|
|
272
|
-
|
|
273
|
-
${C.green}nexa new app <app-name>${C.reset}
|
|
274
|
-
${C.green}nexa new <app-name>${C.reset}
|
|
275
|
-
${C.green}nexa new gc <name>${C.reset}
|
|
276
|
-
${C.green}nexa new cc <name>${C.reset}
|
|
277
|
-
${C.green}nexa new svc <name>${C.reset}
|
|
278
|
-
${C.green}nexa new ctx <name>${C.reset}
|
|
279
|
-
|
|
280
|
-
${C.bold}${C.cyan}Flags${C.reset}
|
|
281
|
-
|
|
282
|
-
${C.green}--base <path>${C.reset} ${C.gray}// subpath deployment${C.reset}
|
|
283
|
-
${C.green}--version, -v${C.reset}
|
|
284
|
-
${C.green}--help, -h${C.reset}
|
|
285
|
-
|
|
286
|
-
${C.bold}${C.cyan}Examples${C.reset}
|
|
287
|
-
|
|
288
|
-
${C.gray}npx create-nexa-app my-app${C.reset}
|
|
289
|
-
${C.gray}npx create-nexa-app my-app --base /portal/${C.reset}
|
|
290
|
-
${C.gray}nexa new app dashboard${C.reset}
|
|
291
|
-
${C.gray}nexa new gc video-card${C.reset}
|
|
292
|
-
${C.gray}nexa new svc auth-service${C.reset}
|
|
293
|
-
${C.gray}nexa new ctx user-session${C.reset}
|
|
294
|
-
`);
|
|
295
|
-
}
|
|
296
|
-
````
|
|
297
|
-
|
|
298
|
-
---
|
|
299
|
-
|
|
300
|
-
# π Final Step (publish)
|
|
301
|
-
|
|
302
|
-
```bash
|
|
303
|
-
git add .
|
|
304
|
-
git commit -m "Finalize CLI help + README (base + version + clean UX)"
|
|
305
|
-
npm version patch --no-git-tag-version
|
|
306
|
-
git add package.json
|
|
307
|
-
git commit -m "Bump version"
|
|
308
|
-
git tag v1.0.6
|
|
309
|
-
git push origin main
|
|
310
|
-
git push origin v1.0.6
|
|
311
|
-
npm publish --access public
|
|
312
|
-
```
|
|
313
|
-
|
|
314
248
|
---
|
|
315
249
|
|
|
316
|
-
|
|
250
|
+
### Why this placement works
|
|
317
251
|
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
321
|
-
-
|
|
322
|
-
- No internal package leakage
|
|
252
|
+
- `https://nexajs.dev` is now **top-tier visibility** (same level as company)
|
|
253
|
+
- It reads as:
|
|
254
|
+
- **company β product β builder**
|
|
255
|
+
- No clutter or repetition
|