1. Create Express app
1import express from 'express';2import { Attach } from 'hbh-deve';4const app = express();6await Attach(app); // Loads all views + routes automatically8app.listen(3000, () => {9 console.log('✅ Running at http://localhost:3000');10});