honojs/node-server

[Feature Request] Support `sendFile`

Opened this issue · 0 comments

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 })
})