-
Notifications
You must be signed in to change notification settings - Fork 77
Open
Description
Similar to express, it would be great for Hono to have a sendFile function to complement serveStatic. There's a lot of custom logic that goes into serving a static file (as evidence'd by the serveStatic function), but you don't always want to just serve a static directory with predetermined paths - in a lot of cases, you may want to dynamically figure out which file to send. It's easy to just read the file into memory and send it along, but it's better to be able to support ranges, mime types, etc. automatically.
I think this api would probably look like:
import { sendFile } from '@hono/node-server/send-file'
// ...
app.get("/my-path", (c) => {
// Can accept options similar to `serveStatic`
return sendFile(c, filePath, { ...options })
})rafaell-lycan, CoffeeChaton, markH5, niraj-ar, lucacicada and 2 more
Metadata
Metadata
Assignees
Labels
No labels