zenstack-crud-server
Installation
SKILL.md
ZenStack V3 — Automatic CRUD Services (Query as a Service)
ZenStack turns your data model into secure CRUD web APIs with no hand-written controllers. Two pieces combine:
- API handler — framework-agnostic; defines the API style (RPC or RESTful) and translates HTTP
requests into ORM queries. From
@zenstackhq/server/api. - Server adapter — framework-specific glue that installs a handler into Express/Next.js/etc. and
supplies a per-request, policy-enforced ORM client. From
@zenstackhq/server/<framework>.
HTTP request → server adapter → API handler (RPC | REST) → ZenStack ORM (policies applied) → DB
This builds on the other skills: define the schema with zenstack-schema-modeling, secure it with
zenstack-access-control, and create the base client with zenstack-querying. Install the server
package: npm install @zenstackhq/server.