@alevnyacow/nzmt 0.16.3 β 0.16.5
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# TL;DR π°
|
|
8
8
|
|
|
9
|
-
You can **scaffold** safe runtime-validated production-ready **server modules easily usable as Server Actions** with DDD-inspired structure and
|
|
9
|
+
You can **scaffold** safe runtime-validated production-ready **server modules easily usable as Server Actions** with DDD-inspired structure **and ready-to-use React Queries in one CLI command**. Fully wired, editable, no boilerplate needed.
|
|
10
10
|
|
|
11
11
|
# What and Why
|
|
12
12
|
|
|
@@ -15,7 +15,7 @@ Next Zod Modules Toolkit. Next.js tools you actually missed + a scaffolder for s
|
|
|
15
15
|
- β Keep using plain Next.js β just faster and cleaner.
|
|
16
16
|
- π§ Focus on your domain logic without drowning in full-blown DDD.
|
|
17
17
|
- β¨ DI, handy API controllers and a bunch of other cool things out of the box aimed at improving your DX.
|
|
18
|
-
- πͺ Services, controllers, client queries, and other programmer stuff appear at the snap of a finger. (Well, not *literally* at the snap of a finger β thatβs just marketing, to be honest. You still need to run one CLI command.)
|
|
18
|
+
- πͺ Services, controllers, client queries, and other programmer stuff appear at the snap of a finger. (Well, not *literally* at the snap of a finger β thatβs just a marketing, to be honest. You still need to run one CLI command.)
|
|
19
19
|
|
|
20
20
|
# Quick start with Prisma
|
|
21
21
|
|
|
@@ -55,7 +55,7 @@ This command generates:
|
|
|
55
55
|
|
|
56
56
|
4. Import and set up there the necessary Prisma adapter in `/server/infrastructure/prisma/client.ts`
|
|
57
57
|
|
|
58
|
-
## Example 1. CRUD for `User` entity with API
|
|
58
|
+
## Example 1. CRUD for `User` entity with API React queries and Server Actions
|
|
59
59
|
|
|
60
60
|
Assuming you have `User` prisma schema.
|
|
61
61
|
|