(Minimal Ripple tool kit. Not just a router)
Not just a router — Rivra is a complete toolkit combining routing, state management, storage, and full-stack app tooling, all fully accessible
Update:
Rivra middleware now applies to the client side as well — not just API routes.
Global Middleware and Plugins are now executed across all routes and resources, ensuring unified behavior.
(Page-specific middleware or plugin logic isn’t supported yet.)
npx rivra create my-app // wrapper around npm create ripple my-app.
npm install rivra
npx rivra init or
yarn add rivra
npx rivra init After initiating Rivra which has all the rivra routing components, the pages directory, /api (if selected full stack), the routes.ts file for your app modules and the configured App.ripple file will be visible in your project src dir. The App.ripple is optional to overwrite.
Here's an example src/pages/ directory:
pages/
├── index.ripple # Home page
├── about.ripple # About page
└── users/
└── [id]/
└── user/
└── [username]/
└── comments/Here's an api/ directory:
api/
├── index.ts # Root API entry point (can load all modules)
├── posts.ts # Top-level posts routes
└── users/
└── [id]/ # Dynamic user ID
└── user/
└── [username]/ # Dynamic username
└── comments/
└── index.ts # User comments routes
/server.ts (autogenerated)
import cookie from "@fastify/cookie";
(async () => {
const app = await StartServer();
await app.start();
})();
import type { Reply, Req, App } from "rivra"
export default async function postAPi(app: App) {
app.get("/", async (req: Req, reply: Reply) => {
const param = req.params
const queries = req.query
return ({ message: "some dynamic route", params: param, query: queries })
})
}
// This style of api while it will give you access to actual Fastify instance, it does not work in serverless environments like vercel. If you need serverless, use below.import type { Req, Reply } from "rivra"
export default async function handler(req: Req, res: Reply) {
if (req.method !== "GET") return res.status(405).send({ message: "Method not allowed" });
res.status(200).send({ hello: "serverless" });
}
// This style is works everywhere. flexible and if you need app instance, please consider using plugins.Rivra allows you to customize the server behaviours by leveraging on Fastify hooks and plugins. There are some times you may want to extend function.
plugins/
├── middleware/
│ ├── cors.ts → global middleware (order=1)
│ └── helmet.ts → global middleware (order=2)
├── auth.md.ts → middleware only for /auth/*
├── auth.pg.ts → /auth routes
├── users/
│ ├── users.md.ts → middleware only for /users/*
│ └── index.ts → /users routes
└── logger.ts → global plugin- Example of plugin
export const order = 2; // order from 1-10 gives you ability to prioritize the order which your hooks run.
export default async function(app: App) {
// 1. Register cookie plugin first
await app.register(cookie, {
secret: "my-secret-key",
parseOptions: {},
});
// 2. Decorate request AFTER cookie plugin
app.decorateRequest("user", null);
// 3. Hooks that use cookies or user
app.addHook("onRequest", async (req, reply) => {
console.log("Incoming URL:", req.raw.url);
reply.header('X-Powered-By', 'Rivra');
console.log("Cookies:", req.cookies); // Now safe
});
}- Example of middlewre
export default function (req: Req, res: Reply,) {
console.log("Protected middleware Incoming:", req.method, req.url);
const truthy = true
if (!truthy) {
res.code(400).send({error: "Bad request"})
return
}
if (req.url === "/api/blocked") {
res.code(403).send({ error: "Forbidden" });
return;
}
}
Here’s a simple and clear table that explains the difference between a plugin and a middleware and how Rivra handle them.
| Aspect | Plugin | Middleware |
|---|---|---|
| Purpose | Extends or configures the Fastify instance (adds routes, hooks, decorators, schemas, etc.) | Intercepts and processes requests before or during route handling (authentication, logging, validation, etc.) |
| Function Signature | (app: FastifyInstance) => void |
(req: FastifyRequest, reply: FastifyReply, app: FastifyInstance) => void |
| Execution Time | Runs once during server startup to register logic | Runs on every incoming request (depending on where it’s applied) |
| Common Use Cases | Adding routes, setting up databases, registering third-party plugins, global configurations | Authentication checks, access control, logging, pre-processing requests` |
| Scope | Can be scoped to a prefix (e.g., /api/protected) |
Can be global or route-specific |
| Impact | Modifies or enhances the app’s capabilities | Filters or modifies the request/response cycle |
| File Naming Convention (in your system) | *.pg.ts (Scoped Plugin) |
*.md.ts (Middleware) |
| Example (Plugin) | export default async function (app) { app.get('/hello', () => 'Hi');} |
|
| Example (Middleware) | t export default async function (req, reply, app) { if (!req.headers.auth) reply.code(401).send({ error: 'Unauthorized' });} |
| Type | Example File | Prefix Applied | Loaded As | Order |
|---|---|---|---|---|
| Global middleware | /plugins/middleware/logger.ts |
none | middleware | before all plugins |
| Route middleware | /plugins/auth/auth.md.ts |
/auth |
middleware | after global, before route |
| Prefixed plugin | /plugins/auth.pg.ts |
/auth |
plugin | normal |
| Folder plugin | /plugins/payments/index.ts |
/payments |
plugin | normal |
| Global plugin | /plugins/cors.ts |
none | plugin | normal |
Dynamic segments use [param] notation like [id] or [username].
import {PageRoutes} from "rivra/router"
import { modules } from "./routes";
export component App() {
<PageRoutes modules={modules} />
}That's it! Your routing is now set up. PageRoutes automatically reads your pages/ folder and matches routes, including dynamic parameters.
Use the Link component for navigation:
import Link from "rivra/router"
export component Navigation() {
<nav>
<Link href="/"><p>{"Home"}</p></Link>
<Link emitEvent={false} href="/about"><p>{"About"}</p></Link>
<Link href="/users/42/user/john" queries={{name: "John", age: 20}}><p>{"User Profile"}</p></Link>
</nav>
}| Prop | Type | Default | Description |
|---|---|---|---|
href |
string |
— | Path to navigate to |
children |
Component |
— | Content to render inside link |
onLoading |
() => void |
— | Callback when navigation starts |
emitEvent |
boolean |
true |
Whether to trigger route events for this link |
loadingComponent |
Component |
— | Optional component to show while loading |
className |
string |
— | Additional CSS class names for styling |
queries |
Record<string, any> |
— | Optional query parameters for URLSearch |
You can subscribe to router events if you need custom behavior:
import { useRouter } from "rivra/router"
const router = useRouter();
router.on("start", path => console.log("Navigating to:", path));
router.on("complete", path => console.log("Navigation finished:", path));
router.on("change", path => console.log("Route changed:", path));
//Guard back navigation
router.beforePopState((url) => {
if (url === "/protected") {
console.log("Navigation blocked:", url);
return false; // Cancel navigation
}
});
// Navigate to a new route
router.push("/users/42?tab=posts");
router.push("/users/42?tab=posts", true, false, {name: "John", age: 20}); // path, emitEvent, shallow (partial url change), queries
//Replace URL shallowly (no full sync)//
router.replace("/users/42?tab=profile", true, true);
// Prefetch a route
router.prefetch("/about");
// Resolve href
console.log("Resolved href:", router.resolveHref("/contact?ref=home"));
// Access reactive properties
console.log("Current path:", router.path);
console.log("Query params:", router.queries);
console.log("Dynamic params:", router.params);
console.log("Full URL:", router.asPath);
// Access full URL info
console.log(router.host);
console.log(router.hostname);
console.log(router.origin);
console.log(router.protocol);
console.log(router.port);
console.log(router.href);
console.log(router.search);
console.log(router.hash);start: triggered before navigation beginscomplete: triggered after navigation finisheschange: triggered on every path change
You can opt out of events per Link with emitEvent={false}.
Access route params and queries in any component:
import { useRouter } from "rivra/router"
export component UserProfile() {
const router = useRouter();
const id = router.params.id; // dynamic param
const username = router.params.username;
const queryName = router.queries.name; // URL query ?name=...
// or
const {params, queries} = router;
<div>
{"User ID: " + id}
{"Username: " + username}
{"Query name: " + queryName}
</div>
}you can disable it with props ```ts
```ts
import {PageRoutes} from "rivra/router"
import { modules } from "./routes";
export component App() {
<PageRoutes modules={modules} enableLoader={false} />
}
A minimal reactive store that manages shared state across your app with an intuitive API. It provides reactivity, persistence, and derived state — all in under a few lines of code.
| Feature | Description |
|---|---|
get() |
Returns the current store value. |
set(next) |
Replaces the entire store value. |
update(partialOrFn) |
Merges new data into the store. Supports both object patching and callback styles. |
subscribe(fn, selector?) |
Reactively listens for state changes, optionally to a selected portion. |
derive(selector) |
Creates a new store derived from a specific part of another store (like computed state). |
delete(keys) |
Removes one or more keys from the store. |
clear() |
Resets store to initial state and removes persisted data. |
persist (option) |
Automatically saves and restores state from localStorage. |
-------------------- Example Stores --------------------
//* Route store for storing current route path
//* Persisted in localStorage as "routeStore"
//*/
export const routeStore = createStore(
{ path: "/" },
{ persist: true, storageKey: "routeStore" }
);
/**
* App store for global state
* Tracks path, user info, theme
* Persisted in localStorage as "appStore"
*/
export const appStore = createStore(
{ path: "/", user: null as null | { name: string }, theme: "light" },
{ persist: true, storageKey: "appStore" }
);Here are extra two simple Hello World store examples for getting started and explain things better.
import { createStore } from "rivra/store"
// Create a simple store
const helloStore = createStore({ message: "Hello World!" });
// Subscribe to changes
helloStore.subscribe(state => {
console.log("Current message:", state.message);
});
// Get changes anywhere
const data = helloStore.get();
console.log(helloStore) // { message: Current message}
console.log(data.message) // Current message
// Update the store
helloStore.update({ message: "Hello Ripple!" });
// Output:
// Current message: Hello World!
// Current message: Hello Ripple!
import { createStore } from "rivra/store"
import { track } from "ripple"
const message = track("")
// Create a persisted store
const persistentHelloStore = createStore(
{ message: "Hello Persistent World!" },
{ persist: true, storageKey: "helloStore" }
);
// Subscribe to changes
persistentHelloStore.subscribe(state => {
console.log("Current message:", state.message);
});
// Get changes anywhere
const data = helloStore.get();
console.log(helloStore) // { message: Current message}
console.log(data.message) // Current message
// Update the store
persistentHelloStore.update({ message: "Updated and Persisted!" });
// Callback update (safe addition)
persistentHelloStore.update(prev => ({ message: prev.message + " " + @message }));
// Reload the page and subscribe again
persistentHelloStore.subscribe(state => {
console.log("After reload:", state.message);
});
// Output (after reload):
// After reload: Updated and Persisted!
export const appStore = createStore(
{
user: { name: "Joe", location: "unknown", preferences: [] },
count: 0,
theme: "light",
},
{ persist: true, storageKey: "appStore" }
);
// Subscribe to entire state
appStore.subscribe(s => console.log("State changed:", s));
// Watch a specific value
appStore.watch(s => s.count, (n, o) => console.log(`Count: ${o} → ${n}`));
// Use middleware for logging
appStore.use((state, action, payload) =>
console.log(`[${action}]`, payload, state)
);
// Partial update
appStore.update({ count: 1 });
// Callback update (safe addition)
appStore.update(prev => ({ count: prev.count + 1 }));
// Derived store
const themeStore = appStore.derive(s => s.theme);
themeStore.subscribe(theme => console.log("Theme:", theme));
// Clear store
appStore.clear();
| Feature / Aspect | createStore (Rivra) | Zustand |
|---|---|---|
| Size / Complexity | Ultra-light (~2 KB) | Larger, includes middleware and devtools |
| Reactivity Model | Manual subscribe / derive |
React hooks (useStore) |
| Selectors | Optional selector argument | Built-in via hooks |
| Persistence | Native persist option |
Needs middleware plugin |
| DevTools Integration | Coming soon | Built-in Redux DevTools support |
| Middleware | Planned via use() |
Full middleware API |
| Callback Updates | Supported: update(prev => {...}) |
Supported: set(state => {...}) |
| Derived Stores | derive(selector) |
Selectors or derived state |
| Performance | Minimal overhead | Optimized for React, slightly heavier |
| Framework Support | Framework-agnostic | React-only |
| TypeScript | Fully typed generics | Excellent TS support |
| Persistence Control | Built-in localStorage | Plugin required |
| Use Case Fit | Libraries & multi-framework projects | React apps needing global state |
✅ Minimal Example
import createIndexDBStore from "rivra/stores"
import IndexDBManager from "rivra/stores"
const userStore = createIndexDBStore({
storeName: 'users',
});
await userStore.add({ id: 'u1', name: 'Joseph', age: 22 });
const all = await userStore.getAll();
console.log(all);✅ Full Configuration Example
interface User {
id: string;
name: string;
age: number;
}
const userStore = createIndexDBStore<User>({
dbName: "MyAppDB",
storeName: "users",
keyPath: "id",
version: 1,
});
// ➕ Add record
await userStore.add({ id: 'u1', name: 'Ada', age: 45 });
// 🔁 Update record by key or object
await userStore.update('u1', { age: 46 });
// 🔍 Get a record by key
const user = await userStore.get('u1');
console.log('Single user:', user);
// 📦 Get all records
const allUsers = await userStore.getAll();
console.log('All users:', allUsers);
// ❌ Remove record by ID
await userStore.remove('u1');
// 🧹 Clear all records
await userStore.clear();
// 🔎 Query using a filter function
const adults = await userStore.query(u => u.age > 30);
console.log('Adults:', adults);
// 👂 Subscribe to store changes (reactive)
const unsubscribe = userStore.subscribe(state => {
console.log('Store changed:', state.items);
});
// 👁️ Watch specific property or subset of data
const watchAdults = userStore.deriveQuery(items => items.filter(u => u.age > 30));
watchAdults.subscribe(adults => console.log('Adults updated:', adults));
// 🔦 Filter (where)
const namedJohn = await userStore.where({ name: 'John' });
console.log('Users named John:', namedJohn);
// 🥇 Get first matching record
const firstUser = await userStore.first({ age: 46 });
console.log('First matching user:', firstUser);
// 🔍 Find by ID (alias for get)
const found = await userStore.find('u1');
console.log('Found user:', found);
// 🧩 Put (alias for update)
await userStore.put({ id: 'u1', name: 'Ada', age: 50 });
// 💳 Perform custom transaction
await userStore.transaction(tx => {
const store = tx.objectStore('users');
store.add({ id: 'u2', name: 'Ken', age: 35 });
});
// 🧭 Watch specific user reactively
const watchUser = userStore.deriveQuery(items => items.find(u => u.id === 'u1') || null);
watchUser.subscribe(u => console.log('u1 changed:', u));
// 🧹 Unsubscribe from store updates
unsubscribe();✅ Multi-Store Example (using IndexDBManager)
interface User {
id: string;
name: string;
}
interface Post {
id: string;
title: string;
}
// Create manager
const db = new IndexDBManager("MyAppDB");
// Create multiple stores
const users = db.createStore<User>("users", "id");
const posts = db.createStore<Post>("posts", "id");
// Add data
await users.add({ id: "u1", name: "Joe" });
await posts.add({ id: "p1", title: "Hello World" });
// Query data
const allUsers = await users.getAll();
const allPosts = await posts.getAll();
console.log(allUsers, allPosts);
// Watch updates
users.subscribe(state => console.log("Users changed:", state.items));
posts.subscribe(state => console.log("Posts changed:", state.items));This is experimental currently. This api allows you make your apps offline first.
import createIndexDBStore from "rivra/stores"
// import IndexDBManager from "rivra/stores"
const userStore = createIndexDBStore<User>({
dbName: "MyAppDB",
storeName: "users",
keyPath: "id",
version: 1,
sync: {
endpoint: "https://api.example.com/users",
async push(item, action) {
// simple example using fetch
if (action === "add") await fetch(this.endpoint!, { method: "POST", body: JSON.stringify(item) });
if (action === "update") await fetch(`${this.endpoint}/${(item as any).id}`, { method: "PUT", body: JSON.stringify(item) });
if (action === "remove") await fetch(`${this.endpoint}/${(item as any).id}`, { method: "DELETE" });
},
async pull() {
const res = await fetch("https://api.example.com/users");
return res.json();
},
interval: 15000,
autoSync: true,
onOffline: () => console.log("User store offline"),
onOnline: () => console.log("User store online"),
},
});
// Multi-store manager usage with global + per-store callbacks:
const db = new IndexDBManager("MyAppDB", 1, {
onOffline: () => console.log("Global offline"),
onOnline: () => console.log("Global online"),
});
// per-store callbacks override global if provided
const users = db.createStore<User>("users", "id", {
sync: {
onOffline: () => console.log("Users store offline"),
onOnline: () => console.log("Users store online"),
}
});
const posts = db.createStore<{ id: string; title: string }>("posts", "id");- File-based routing
- Dynamic route segments
[param] - URL query support
- Optional per-link router events
- Reactive
Linkcomponent with optional loading UI - Global progress loader
- Minimal setup—just structure
pages/ - Minimal indexDB manager with zero dependencies.
- Zustand like global state management available in and outside components
