Post
Neon Mango Protocol
7/8/2024
This starter ships with routes, SSR, and a calm visual system out of the box.
Start by editing route files, then layer in add-ons as needed.
What you get on day one
- Full-document SSR using TanStack Start
- Type-safe file routing with generated route types
- A reusable design token system for light and dark themes
The goal is simple: let teams ship product pages and APIs without spending the first week wiring framework internals.
Suggested order of operations
- Make the home route feel like your product
- Add one feature route and one API route
- Introduce add-ons only after your core UX is clear
Keep the first commit boring. Reliable defaults beat clever setup code.
Baseline delivery checklist
Before introducing custom infra, confirm these are green:
pnpm devstarts cleanly- one server route returns typed data
- one API route validates input/output
- one integration test exercises a full page render
When these are in place, you can iterate quickly without losing confidence.
Example request flow
- Client navigation enters route loader
- Loader calls server function
- Server function reads data source and returns typed payload
- Route component renders immediately with stable shape
That flow is simple, predictable, and easy to debug.