File SystemWrite fileWrite a Response to a fileUse Bun.write() to write a Response to disk. The body of the Response is written to the destination.Copy MarkdownOpenWrite a file incrementallyBun provides an API for incrementally writing to a file. Use it for large files, or when writing to a file over a long period of time.Write to stdoutThe console.log function writes to stdout and appends a line break to the printed data.