Hono · 1 of 3RoutingWhich method registers a handler for GET requests in Hono?Aapp.fetch()Bapp.get()Capp.handle()Dapp.route()
Hono · 2 of 3TestingHow do you test file upload handling in Hono?AUse fs.createReadStream() to simulate file uploadBFile uploads cannot be tested without a browserCUse app.uploadFile('/upload', filePath)DSend a FormData holding a File via app.request()
Hono · 3 of 3AdaptersHow do you implement a Hono adapter that supports HTTP/3 (QUIC) on platforms that provide it?AHTTP/3 requires a completely different handler interface than fetch()BHTTP/3 terminates at the platform, leaving the adapter a RequestCCreate a custom adapter that speaks the QUIC protocol directlyDUse the @hono/http3 package for QUIC transport support