create-nexusts 0.9.7 → 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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. 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
- npm create nexusts@latest my-app
12
- npx create-nexusts@latest my-app
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
- npm create nexusts@latest my-app
39
+ bun create nexusts@latest my-app
40
40
 
41
41
  # Inertia.js v3 + React SPA
42
- npm create nexusts@latest my-app --view inertia
42
+ bun create nexusts@latest my-app --view inertia
43
43
 
44
44
  # No ORM (just an HTTP skeleton)
45
- npm create nexusts@latest my-app --orm none --db none
45
+ bun create nexusts@latest my-app --orm none --db none
46
46
 
47
47
  # Functional handler style (Hono-style)
48
- npm create nexusts@latest my-app --style functional
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 `npx @nexusts/core init` in the new directory — you can use that command directly in an existing project to add NexusTS without losing files.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nexusts",
3
- "version": "0.9.7",
3
+ "version": "0.9.9",
4
4
  "description": "Scaffold a new NexusTS project — npm create nexusts@latest, bunx create-nexusts, or npx create-nexusts",
5
5
  "bin": {
6
6
  "create-nexusts": "index.js"