@exanderal/stackcraft 0.1.0 → 0.1.1
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 +38 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# stackcraft
|
|
2
|
+
|
|
3
|
+
Spin up a production-ready monorepo in one command.
|
|
4
|
+
|
|
5
|
+
> **Work in progress.** The CLI is functional but not polished. Expect breaking changes between versions.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npx @exanderal/stackcraft
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Follow the prompts. You'll end up with an Nx monorepo with a NestJS API and your choice of Vite + React or Next.js frontend — deps installed, ready to run.
|
|
14
|
+
|
|
15
|
+
## What you get
|
|
16
|
+
|
|
17
|
+
- Nx monorepo with `apps/` and `packages/`
|
|
18
|
+
- NestJS REST API (`apps/api`)
|
|
19
|
+
- Vite + React or Next.js (`apps/web`)
|
|
20
|
+
- Every app has `dev`, `build`, `lint` scripts wired into Nx
|
|
21
|
+
|
|
22
|
+
## Stack
|
|
23
|
+
|
|
24
|
+
- **Monorepo** — Nx
|
|
25
|
+
- **Package manager** — pnpm or npm
|
|
26
|
+
- **Backend** — NestJS
|
|
27
|
+
- **Frontend** — Vite + React or Next.js
|
|
28
|
+
|
|
29
|
+
## Roadmap
|
|
30
|
+
|
|
31
|
+
- [ ] NestJS GraphQL + codegen
|
|
32
|
+
- [ ] Expo mobile
|
|
33
|
+
- [ ] `stackcraft add` addon system (auth, Supabase, etc.)
|
|
34
|
+
- [ ] Presets and `--config` for non-interactive use
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|