Step-by-Step Tutorials
Eronom Guides
Learn how to build, optimize, and deploy high-performance applications with Eronom.
💻 VS Code Extension Setup & Syntax Highlighting
Get full syntax highlighting, tag auto-closing, and signal completion inside .erm files in Visual Studio Code.
1. Open VS Code Extensions (Ctrl+Shift+X)
2. Search for "Eronom Language Tools"
3. Click Install to enable automatic bracket matching & template highlighting.
2. Search for "Eronom Language Tools"
3. Click Install to enable automatic bracket matching & template highlighting.
🌐 Building Full-Stack API Routes
Learn how to handle HTTP requests, return JSON responses, and integrate backend databases in server/api/routes.er.
import from "std/http";
let app = router();
app.get('/api/users', (c) => c.json([]));
let app = router();
app.get('/api/users', (c) => c.json([]));
🚀 Production Build & Rust Deployment
Compile your Eronom app into a single self-contained binary with sub-millisecond cold start times.
$ eronom build
Installed production bundle under ./dist/server
Installed production bundle under ./dist/server