A simple web application that demonstrates form submission and server response echoing.
├── backend/
│ └── index.ts # Hono server with API endpoints
├── frontend/
│ └── index.html # Main HTML page with form
└── README.md
/api/echo endpointGET / - Serves the main HTML pagePOST /api/echo - Accepts JSON with text field, returns echoed responseThe application is accessible via the HTTP trigger on the backend. Simply visit the URL and use the form to submit text and see it echoed back.