@nexusts/cli 0.7.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 ADDED
@@ -0,0 +1,41 @@
1
+ # @nexusts/cli
2
+
3
+ > **NexusTS** — Bun-native fullstack framework
4
+
5
+ ## Description
6
+
7
+ CLI command runner (`nx`).
8
+
9
+ Adonis ACE-style command runner. Ships `nx new`, `nx init`, `nx make:controller`, `nx db:migrate`, `nx repl`, etc. The `nx` binary is bundled with @nexusts/core so most users don't need to install this separately.
10
+
11
+ ## Install
12
+
13
+ This module is part of the NexusTS monorepo. Each module is published as its own npm package under the `@nexusts/` scope.
14
+
15
+ Most apps start with just the core:
16
+
17
+ ```bash
18
+ bun add @nexusts/core reflect-metadata zod hono
19
+ ```
20
+
21
+ Then add this module only if you need it:
22
+
23
+ ```bash
24
+ bun add @nexusts/cli
25
+ ```
26
+
27
+ ## Peer dependencies
28
+
29
+ None. This module is fully self-contained.
30
+
31
+ ## Usage
32
+
33
+ ```typescript
34
+ import { /* public API */ } from "@nexusts/cli";
35
+ ```
36
+
37
+ See the [user guide](../../docs/user-guide/cli.md) and the [example app](../../examples/) for a working demo.
38
+
39
+ ## License
40
+
41
+ MIT — see the root [LICENSE](../../LICENSE).