Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Write files with Bun
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 });