Quickstart
Installation
Install the core standards packages and their peer dependencies.
Install the three core packages:
pnpm add @stndrds/schema @stndrds/react @stndrds/uiThen install peer dependencies:
pnpm add react@19 react-dom@19 @tanstack/react-query@5 @supabase/supabase-js@2 react-hook-form@7 @hookform/resolvers@3 next-intl@3 rilaykitThe three core packages cover distinct responsibilities:
@stndrds/schema— object and attribute builders, type contracts, and the registry. Client-safe.@stndrds/react— data hooks, theSchemaClientProvider, and the query layer.@stndrds/ui— pre-built views, forms, and grid components.
Adapter packages
Adapters connect standards to your backend infrastructure. Install the ones you need:
pnpm add @stndrds/adapter-nestjs @stndrds/adapter-supabaseSee the Adapters concept page for the full list of available adapter packages and their configuration.