Bun provides fast file writing withDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/zhcndoc/bun/llms.txt
Use this file to discover all available pages before exploring further.
Bun.write().
Powered by Mintlify
Auto-generate your docs
Write files with Bun
Bun provides fast file writing withDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/zhcndoc/bun/llms.txt
Use this file to discover all available pages before exploring further.
Bun.write().
await Bun.write("output.txt", "Hello World");
const data = { name: "John", age: 30 };
await Bun.write("data.json", JSON.stringify(data, null, 2));
const file = Bun.file("log.txt");
await Bun.write(file, "New log entry\n", { append: true });