Documentation Index
Fetch the complete documentation index at: https://bun.zhcndoc.com/llms.txt
Use this file to discover all available pages before exploring further.
Bun.file() 函数接受一个路径并返回一个 BunFile 实例。BunFile 类继承自 Blob,允许你以多种格式懒加载地读取文件。使用 .stream() 可以将文件作为 ReadableStream 逐步消费。
可将流的块作为 异步可迭代对象 使用
for await 进行消费。
有关在 Bun 中使用流的更多信息,请参阅Streams文档。