Archive
Articles & tutorials
Deep dives into modern web development β practical guides, hands-on projects and real-world patterns.
47 articles
46β47 of 47
21 minAug 21, 2026
Semantic Search Over Your Own Content: Nuxt 4 + TypeScript + Nuxt Content + sqlite-vec + Transformers.js
Add meaning-based search to a Nuxt 4 site without an API key or a vector database: Nuxt Content supplies heading-sized chunks, Transformers.js embeds them locally on the CPU, sqlite-vec stores them next to an FTS5 index, and one Nitro endpoint fuses keyword and vector results with Reciprocal Rank Fusion.
Read article
22 minAug 24, 2026
An Analytics Dashboard With No Analytics API: Nuxt 4 + TypeScript + DuckDB-Wasm + Parquet + Observable Plot
Ship the dataset instead of an endpoint: one sorted Parquet file served from Nitro over HTTP range requests, DuckDB-Wasm running the GROUP BY in a Web Worker, Apache Arrow handing columns straight to Observable Plot β five charts that cross-filter in tens of milliseconds, with no /api/stats anywhere in the app.
Read article