MenuFeed

Community feed

Public proof from builders keeping a flight in the air

Every card in the feed is a real piece of work shipped by a maker on Fly in Public. Posts, videos, demos, landing pages, and other public proofs flow in as their authors log them. Read the message, open the original link, react with a like, or click through to the maker's flight to see their full history and current altitude.

Want to add yours? Sign in to start a flight and post your first proof. New here? See how flights stay in the air or scan the leaderboard to find makers in your space.

Community feed

Public proof from builders in flight

Sign in

Aug 10 - Aug 16, 2026

Jul 6 - Jul 12, 2026

Three years ago I wrote a backend boilerplate, pushed it to a private repo, and forgot it existed. This week I needed a quick REST API. Instead of the usual heavyweight setup, I went spelunking through my old GitHub repos and there it was. 2021 me, Express, TypeScript, a decorator-based routing idea I was weirdly proud of. The problem: it was frozen in 2021. Node 14, Express 4, dependencies that hadn't been touched in years. So I sat down with Claude Code and rebuilt it properly: → Node 22, Express 5, TypeScript 5, strict everything → Vitest + supertest, CI on Node 20 & 22, multi-stage Docker → MongoDB, Auth0 and Sentry as opt-in modules — set an env var and they turn on, leave it out and they never load → Health checks, graceful shutdown, request correlation IDs → Then packaged the whole thing as a CLI and shipped it to npm Meet 🏎️ Chassis — a lightweight, decorator-driven Express + TypeScript starter. One command, zero config to boot: npm create chassis my-api The pitch is simple: if you love NestJS's ergonomics but not its weight for a small service, this is the featherweight option. Nest-style controllers on plain Express ~10 small files you can actually read, not a framework you have to learn. It even ships with an AGENTS.md so your AI coding agent writes code that matches the conventions out of the box. MIT, free, and I'd genuinely love feedback (or a ⭐). github.com/dvd90/chassis https://lnkd.in/ecFyk_aX #TypeScript #NodeJS #OpenSource #BackendDevelopment #ClaudeCode