Tool
Express.js
Minimalist Node.js framework: routing, middleware and HTTP handler composition. The foundation of many backends and a natural place to wire logging, auth and validation.
Key points
- ▸Chained middleware model: each handler receives (req, res, next) and decides whether to continue or short-circuit.
- ▸Modular Router: grouping endpoints by domain in separate routers keeps the app readable as it grows.
- ▸Centralized error handling: middleware signed as (err, req, res, next) catches whatever `next(err)` is called with anywhere.
Seed content from the CV; pending manual review or Trilium ingestion.