Update more docs references to V8

This commit is contained in:
Sebastian Jeltsch
2025-10-07 14:10:50 +02:00
parent 9e766f1646
commit 64efae9ff8
8 changed files with 15 additions and 16 deletions

View File

@@ -8,8 +8,8 @@
<p align="center">
An open, <a href="https://trailbase.io/reference/benchmarks/">blazingly fast</a>,
single-executable Firebase alternative with type-safe REST & realtime APIs, built-in JS/ES6/TS
runtime, SSR, auth and admin UI built on Rust, SQLite & WebAssembly.
single-executable Firebase alternative with type-safe REST & realtime APIs, built-in WebAssembly
runtime, SSR, auth and admin UI built on Rust, SQLite & Wasmtime.
<p>
<p align="center">

View File

@@ -1,8 +1,8 @@
# TrailBase Client
TrailBase is a [blazingly](https://trailbase.io/reference/benchmarks/) fast,
open-source application server with type-safe APIs, built-in JS/ES6/TS runtime,
realtime, auth, and admin UI built on Rust, SQLite & V8.
open-source application server with type-safe APIs, built-in WebAssembly runtime,
realtime, auth, and admin UI built on Rust, SQLite & Wasmtime.
For more context, documentation, and an online demo, check out the website:
[trailbase.io](https://trailbase.io).

View File

@@ -1,8 +1,8 @@
# TrailBase Client
TrailBase is a [blazingly](https://trailbase.io/reference/benchmarks/) fast,
open-source application server with type-safe APIs, built-in JS/ES6/TS runtime,
realtime, auth, and admin UI built on Rust, SQLite & V8.
open-source application server with type-safe APIs, built-in WebAssembly runtime,
realtime, auth, and admin UI built on Rust, SQLite & Wasmtime.
For more context, documentation, and an online demo, check out our website:
[trailbase.io](https://trailbase.io).

View File

@@ -1,8 +1,8 @@
# TrailBase Client
TrailBase is a [blazingly](https://trailbase.io/reference/benchmarks/) fast,
open-source application server with type-safe APIs, built-in JS/ES6/TS runtime,
realtime, auth, and admin UI built on Rust, SQLite & V8.
open-source application server with type-safe APIs, built-in WebAssembly runtime,
realtime, auth, and admin UI built on Rust, SQLite & Wasmtime.
For more context, documentation, and an online demo, check out our website:
[trailbase.io](https://trailbase.io).

View File

@@ -58,8 +58,8 @@ if (image) {
<div class="tagline">
<p>
An open, blazingly fast, single-executable Firebase alternative with
type-safe REST & realtime APIs, built-in JS/ES6/TS runtime, SSR, auth
and admin UI built on Rust, SQLite & WebAssembly.
type-safe REST & realtime APIs, built-in WebAssembly runtime, SSR,
auth and admin UI built on Rust, SQLite & Wasmtime.
</p>
<br />

View File

@@ -24,7 +24,7 @@ look at their differences both technically and philosophically.
TrailBase was born out of admiration for PocketBase trying to move the needle
in a few areas:
- Less abstraction and embracing standards (SQL[^1], ES6 Node-like JS runtime,
- Less abstraction and embracing standards (SQL[^1], a full ES6 runtime through WASM,
JWT, UUID) to not get in your way, avoid lock-in and making it easier to
adopt TrailBase either fully or as piece-meal as well as getting rid of it if
necessary.

View File

@@ -40,15 +40,15 @@ can also run logic outside in your [own backend](#bring-your-own-backend).
Within TrailBase you have the following options:
1. [JS & TS handlers](#javascript--typescript-handlers),
1. [JS & TS handlers](#wasm-handlers-javascript-typescript-or-rust),
2. [Stored database procedures](#stored-procedures),
3. [Native Rust handlers](#rust-handlers).
### JavaScript & TypeScript Handlers
### WASM Handlers (JavaScript, TypeScript or Rust)
TrailBase's built-in runtime enables wiring custom HTTP endpoints using full
ES6 JavaScript and/or TypeScript.
ES6 JavaScript, TypeScript or Rust.
For more context, check out the dedicated [docs](/documentation/apis_js/).
### Stored Procedures

View File

@@ -300,8 +300,7 @@ Output:
## Final Words
We're very happy to confirm that TrailBase's APIs and JS/ES6/TS runtime are
quick.
We're very happy to confirm that TrailBase's APIs and WASM runtime are quick.
The significant performance gap we observed for API access is a consequence of
how fast SQLite itself is making even small overheads matter that much more.