A lightweight, real-time state management library for Next.js applications with WebSocket support.
bun add @rubriclab/state
@rubriclab scope packages are not built, they are all raw TypeScript. If using in a Next.js app, make sure to transpile.
import type { NextConfig } from 'next'
export default {
transpilePackages: ['@rubriclab/state']
} satisfies NextConfig
If using inside the monorepo (@rubric), simply add
{"@rubriclab/state": "*"}
to dependencies and then runbun i
To get started, define a few objects.
import { z } from 'zod'
export const schema = z.object({
todos: z.record(z.string(), z.object({
title: z.string(),
completed: z.boolean()
})).default({})
})
The provider handles fetching initial data for first-paint (SSR)
import { RealtimeProvider } from '@rubriclab/state'
export default function Layout({ children }) {
return (
<RealtimeProvider websocketUrl="ws://localhost:3001">
{children}
</RealtimeProvider>
)
}
Pass your schema into the hook creator to get typesafe states.
import { createLiveState } from '@rubriclab/state/client'
const { useLiveState } = createLiveState(schema)
export function MyComponent() {
const [todos, setTodos] = useLiveState('todos')
const addTodo = () => {
setTodos(prev => ({
...prev,
[crypto.randomUUID()]: { title: 'New todo', completed: false }
}))
}
return (
<div>
<button onClick={addTodo} type="button">
Add Todo
</button>
<ul>
{Object.entries(todos).map(([id, todo]) => (
<li key={id}>
<input
type="checkbox"
checked={todo.completed}
onChange={() =>
setTodos(prev => ({
...prev,
[id]: { ...todo, completed: !todo.completed }
}))
}
/>
{todo.title}
</li>
))}
</ul>
</div>
)
}
Use it as you would useState
.
Run bun run rubriclab-state-start
to start the server.
The server can be deployed eg. on Railway by setting this as the custom start command.
Open your Next.js app in two browser windows. Values should be synced between the two.
Try disabling JS in one browser:
⌘+⇧+i
> ⌘+⇧+p
> disable j...
> ⏎
then refreshing - the page should still reflect fresh data.
- 🔄 Real-time state synchronization
- 🔒 Type-safe with Zod schemas
- 🚀 Built with Bun.js for performance
- ⚡️ Minimal API surface
- 🔌 WebSocket-based communication
Start the WebSocket server:
bun dev