create-nexusts 0.9.8 → 0.9.9
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,8 @@ The official scaffolder for [NexusTS](https://github.com/nexus-ts/nexusts). Crea
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# All three forms are equivalent:
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
bun create nexusts@latest my-app
|
|
12
|
+
bun create nexusts@latest my-app
|
|
13
13
|
bunx create-nexusts@latest my-app
|
|
14
14
|
```
|
|
15
15
|
|
|
@@ -36,16 +36,16 @@ Your app will be running at `http://localhost:3000`.
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
# Minimal: NestJS-style + Rendu + Drizzle + SQLite
|
|
39
|
-
|
|
39
|
+
bun create nexusts@latest my-app
|
|
40
40
|
|
|
41
41
|
# Inertia.js v3 + React SPA
|
|
42
|
-
|
|
42
|
+
bun create nexusts@latest my-app --view inertia
|
|
43
43
|
|
|
44
44
|
# No ORM (just an HTTP skeleton)
|
|
45
|
-
|
|
45
|
+
bun create nexusts@latest my-app --orm none --db none
|
|
46
46
|
|
|
47
47
|
# Functional handler style (Hono-style)
|
|
48
|
-
|
|
48
|
+
bun create nexusts@latest my-app --style functional
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## What you get
|
|
@@ -65,7 +65,7 @@ my-app/
|
|
|
65
65
|
└── README.md # Project-specific README
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
Internally this runs `
|
|
68
|
+
Internally this runs `bunx @nexusts/core init` in the new directory — you can use that command directly in an existing project to add NexusTS without losing files.
|
|
69
69
|
|
|
70
70
|
## Help
|
|
71
71
|
|