Files
trailbase/examples
Sebastian Jeltsch 9e46a099d0 Stop encoding SQL values as generic JSON values (outside the context of the record API), i.e. for admin APIs and between WASM host/guest.
This lets us simplify the parsing and add back a lot of type-safety (including int64). As a side-effect, we basically had to complete reqrite the record insert/update handling in the admin UI.

Note, however, that this is a breaking change, since it touches serialization between WASM guests and host. Guest will need to be built against an updated guest runtime.
2025-10-21 16:40:45 +02:00
..
2025-10-03 13:00:05 +02:00

TrailBase Examples

Blog

A simple styled Blog example with UIs both for web and Flutter:

Blog web app Blog Flutter app

TanStack/db Synced Todo Example

A simple ToDo App demonstrating the use of TanStack/db to automatically sync items and settings across tabs, Browsers and devices.

ToDo example app using TanStack/db for cross-device sync

Server-Side Rendered Collaborative Clicker

A small clicker application, where we can collaboratively make it go 🚀. It show-cases server-side rendering using SolidJS, however it could equally be React, Vue, Svelte, Preact, ... . After client-side hydration, click counter changes are streamed to everyone listening.

Collaborative acorn clicker

A small single-page web app demonstrating vector search and custom JS/TS endpoints.

Coffee vector search web app

Data CLI App

A brief example of how TrailBase can be used in an command-line app to ingest IMDB data and query it. This code belongs to the CLI tutorial:

Custom Rust Binary

A quick example showcasing how one can use TrailBase as a library.