EGDesk System Demo

Live data from your EGDesk database — no Supabase, no Firebase, no SQL.

How EGDesk works in this app:
  1. proxy.ts — auto-generated, intercepts every fetch and routes to the right database
  2. egdesk.config.ts — auto-generated, contains your table names & column definitions
  3. egdesk-helpers.ts — auto-generated, exposes queryTable, insertRow, updateRow, etc.
  4. lib/api.ts — provides apiFetch() so API calls work with tunnel basePath
  5. Your code uses apiFetch('/api/...') instead of fetch()no connection strings, no credentials in code
Fetching data from EGDesk…

Dev tip: Import data in EGDesk → tables appear here automatically. EGDesk regenerates egdesk.config.ts and egdesk-helpers.ts every time your schema changes.