Bun.file() function accepts a path and returns a BunFile instance. BunFile extends Blob, so you can read the file lazily in a variety of formats. Use .stream() to consume the file incrementally as a ReadableStream.
The stream is an async iterable, so you can read its chunks with
for await.
See Streams for more on working with streams in Bun.