@zenstackhq/redwood
v2.8.1
Published
CLI and runtime for integrating ZenStack with RedwoodJS projects.
Downloads
656
Readme
ZenStack RedwoodJS Integration
This package provides the CLI and runtime APIs for integrating ZenStack into a RedwoodJS project. You can use ZenStack as a drop-in replacement to Prisma and define flexible access control policies declaratively inside the database schema. It's especially useful for building multi-tenant applications which tend to have complex authorization requirements beyond RBAC.
ZenStack is a full-stack toolkit built above Prisma ORM. It extends Prisma at the schema and the runtime level for adding the following capabilities:
- Flexible access control
- Data validation rules
- Multi-file schemas
- Custom attributes and functions in schemas
You can find a more detailed integration guide here.
Setting up
Run the following package setup command:
yarn rw setup package @zenstackhq/redwood
The setup command will:
- Update "redwood.toml" to allow ZenStack CLI plugin.
- Install ZenStack dependencies.
- Copy your Prisma schema file "api/db/schema.prisma" to "api/db/schema.zmodel".
- Add a "zenstack" section into "api/package.json" to specify the location 1f both the "schema.prisma" and "schema.zmodel" files.
- Install a GraphQLYoga plugin in "api/src/functions/graphql.[ts|js]".
- Eject service templates and modify the templates to use
context.db
(ZenStack-enhancedPrismaClient
) instead ofdb
for data access.
Modeling data and access policies
ZenStack's ZModel language is a superset of Prisma schema language. You should use it to define both the data schema and access policies. The Complete Guide of ZenStack is the best way to learn how to author ZModel schemas.
You should run the following command after updating "schema.zmodel":
yarn rw @zenstackhq generate
The command does the following things:
- Regenerate "schema.prisma"
- Run
prisma generate
to regenerate PrismaClient - Generates supporting JS modules for enforcing access policies at runtime
Development workflow
The workflow of using ZenStack is very similar to using Prisma in RedwoodJS projects. The two main differences are:
Generation
You should run
yarn rw @zenstackhq generate
in place ofyarn rw prisma generate
. The ZenStack's generate command internally regenerates the Prisma schema from the ZModel schema, runsprisma generate
automatically, and also generates other modules for supporting access policy enforcement at the runtime.Database access in services
In your service code, you should use
context.db
instead ofdb
for accessing the database. Thecontext.db
is an enhanced Prisma client that enforces access policies.The "setup" command prepared a customized service code template. When you run
yarn rw g service
, the generated code will already usecontext.db
.
Other Prisma-related workflows like generation migration or pushing schema to the database stay unchanged.
Deployment
You should run the "generate" command in your deployment script before yarn rw deploy
. For example, to deploy to Vercel, the command can be:
yarn rw @zenstackhq generate && yarn rw deploy vercel
Using the @zenstackhq
CLI plugin
The @zenstackhq/redwood
package registers a set of custom commands to the RedwoodJS CLI under the @zenstackhq
namespace. You can run it with:
yarn rw @zenstackhq <cmd> [options]
The plugin is a simple wrapper of the standard zenstack
CLI, similar to how RedwoodJS wraps the standard prisma
CLI. It's equivalent to running npx zenstack ...
inside the "api" directory.
See the CLI references for the full list of commands.
Sample application
You can find a complete multi-tenant Todo application built with RedwoodJS and ZenStack at: https://github.com/zenstackhq/sample-todo-redwood.
Getting help
The best way to get help and updates about ZenStack is by joining our Discord server.