Learn more about Mintlify
Enter your email to receive updates about new features and product releases.
Read text files with Bun
Bun.file()
const file = Bun.file("data.txt"); const text = await file.text(); console.log(text);
import { readFileSync } from "node:fs"; const text = readFileSync("data.txt", "utf-8"); console.log(text);
try { const file = Bun.file("data.txt"); const text = await file.text(); console.log(text); } catch (error) { console.error("Failed to read file:", error); }