📄️ Treasury Dashboard
A real-time financial dashboard with summary cards, cash flow table, exchange rates, and auto-refresh.
📄️ Authenticated Task Manager
A page that requires login and displays tasks assigned to the current user with complete/dismiss actions.
📄️ Expense Submission Form
A custom HTML form with client-side validation, loading states, and backend processing with database insert and task routing.
📄️ System Status Monitor
A public status page with color-coded health indicators, latency metrics, and 5-second polling.
📄️ Filtered Orders Table
A page that reads URL query parameters for tab-based filtering with a clean data table.
📄️ Streaming Progress Bar
A page that runs a long task on the backend and streams progress updates to a visual progress bar in real time using a generator function.
📄️ Streaming File Download
A page that streams a large CSV file from the backend to the browser line by line, without loading the entire file into memory. Uses ` for top-level for await...of`.
📄️ Streaming Video with Media Source Extensions
A page that plays a long video (a recorded class, a deposition, a screen capture) without ever loading the whole file into memory. The video stays on the server as a fragmented MP4 (fMP4); a Python generator reads one fragment at a time and streams it to the browser, which appends it to a SourceBuffer.