Skip to content
Back to Transmissions
// DATE
// AUTHOR
DHAATRIK
// CLEARANCE
PUBLIC
// INTERACTION

FuelDrop Tech Stack — React 19, Leaflet, PWA, and What Needs a Backend

FuelDrop
====================================================================
// TRANSMISSION METADATA // QUICK REFERENCE (AEO/LLMO OBJECTS)
--------------------------------------------------------------------
- ENTITY: FuelDrop tech stack (v3.0.0)
- REPO: github.com/dhaatrik/fueldrop
- CLIENT: React 19 + Vite 6 + Tailwind 4 + Leaflet + vite-plugin-pwa
- MISSING: WebSocket server, payment API, auth backend, telematics ingest
- KEY LESSON: Client-only can demo logistics UX; it cannot dispatch real fuel
====================================================================

Mission Report: The Stack Serves the Demo, Not the Fleet

SYS.STATUS: TRANSMISSION LIVE // CLEARANCE: PUBLIC

FuelDrop’s stack is chosen to move pixels fast on mobile — not to run a dispatch center. Read why FuelDrop exists first; this is the engineering appendix.


Mission Report: What I Picked (Client-Side)

LayerChoiceWhy
UIReact 19 + Vite 6Concurrent-friendly UI for multi-step order flows
Formsreact-hook-form + ZodTyped checkout, fleet mode, promo validation
MapsLeaflet + react-leafletFamiliar map tiles for tracking presentation
MotionMotionStatus transitions, sheets, neo-brutalist delight
Routingreact-router-domCustomer routes + /captain + /fleet
PWAvite-plugin-pwaInstallable demo on phones
TestsVitest + RTLOrder flow and component regressions

No Express. No Socket.io. No database driver. That is the point.


Mission Report: What Needs a Backend (Not Shipped)

CapabilityWhy client-only is not enough
Real dispatchCaptain assignment must be authoritative server-side
Live GPSTelematics ingest + fan-out to customers
PaymentsPCI, refunds, surge pricing settlement
AuthReal OTP via SMS gateway — demo uses hardcoded 1234
Order persistenceMulti-device truth, audit logs, dispute resolution
WebSocketsStale marker problem needs server-coordinated state

My portfolio claimed WebSocket tracking. The repo demonstrates map UI states — different layer.


Mission Report: Fuckups & Learnings

  • Leaflet without telematics is theater — useful theater for UX iteration, not operations.
  • PWA helps demos, not compliance. Installable ≠ regulated fuel transport.
  • Zod schemas front-run backend contracts. Good for later API design; dangerous if mistaken for shipped APIs.
  • Vitest catches UI lies early. Grace-period countdowns and promo math need tests even in mock mode.

Mission Report: Closing Transmission

React for surfaces. Leaflet for map chrome. PWA for pocket demos. Backend is homework.

MIT demo honesty: open demo, simulated OTP.