diff options
author | 2023-09-13 20:43:39 -0700 | |
---|---|---|
committer | 2023-09-13 20:43:39 -0700 | |
commit | c99caccdb2e1bb961b13766ec7ebb9907763e364 (patch) | |
tree | cbc65806656c2b2765666e96a168f5613adf9bb4 /docs/api | |
parent | 22f14129e5f8e0328b200ce3a8573dbd7c9562c4 (diff) | |
download | bun-c99caccdb2e1bb961b13766ec7ebb9907763e364.tar.gz bun-c99caccdb2e1bb961b13766ec7ebb9907763e364.tar.zst bun-c99caccdb2e1bb961b13766ec7ebb9907763e364.zip |
More docs & helptext cleanup (#5229)
* wip
* Flesh out resolution docs
* Polish
* More
* WIP
* WIP
* WIP
* Document --watch
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/file-io.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md index e6902cc6a..f37473c33 100644 --- a/docs/api/file-io.md +++ b/docs/api/file-io.md @@ -2,7 +2,7 @@ <!-- **Note** — The `Bun.file` and `Bun.write` APIs documented on this page are heavily optimized and represent the recommended way to perform file-system tasks using Bun. Existing Node.js projects may use Bun's [nearly complete](/docs/runtime/nodejs-apis#node-fs) implementation of the [`node:fs`](https://nodejs.org/api/fs.html) module. --> -**Note** — The `Bun.file` and `Bun.write` APIs documented on this page are heavily optimized and represent the recommended way to perform file-system tasks using Bun. For operations that are not yet available with `Bun.file`, such as `mkdir`, you can use Bun's [nearly complete](/docs/runtime/nodejs-apis#node-fs) implementation of the [`node:fs`](https://nodejs.org/api/fs.html) module. +**Note** — The `Bun.file` and `Bun.write` APIs documented on this page are heavily optimized and represent the recommended way to perform file-system tasks using Bun. For operations that are not yet available with `Bun.file`, such as `mkdir` or `readdir`, you can use Bun's [nearly complete](/docs/runtime/nodejs-apis#node-fs) implementation of the [`node:fs`](https://nodejs.org/api/fs.html) module. {% /callout %} |