diff options
author | 2023-08-03 16:31:05 -0700 | |
---|---|---|
committer | 2023-08-03 16:31:05 -0700 | |
commit | 112030481f3d89bb45cf9cecb2b21530bb53398c (patch) | |
tree | e2d57f7bd56179a2c6d84c4a7a18ef59b59f660a /docs/api | |
parent | 9574db355f1435f60214726b21f1ca5bb9d13f6c (diff) | |
download | bun-112030481f3d89bb45cf9cecb2b21530bb53398c.tar.gz bun-112030481f3d89bb45cf9cecb2b21530bb53398c.tar.zst bun-112030481f3d89bb45cf9cecb2b21530bb53398c.zip |
More guides and fixing links (#3960)bun-v0.7.2
* More guides
* WIP
* Updates
* Fix
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/file-io.md | 4 | ||||
-rw-r--r-- | docs/api/globals.md | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md index be9cf0991..e141c8b17 100644 --- a/docs/api/file-io.md +++ b/docs/api/file-io.md @@ -1,8 +1,8 @@ {% callout %} -<!-- **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. 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`, 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 %} diff --git a/docs/api/globals.md b/docs/api/globals.md index 370dd3800..fe7cd60c6 100644 --- a/docs/api/globals.md +++ b/docs/api/globals.md @@ -34,7 +34,7 @@ Bun implements the following globals. - [`Buffer`](https://nodejs.org/api/buffer.html#class-buffer) - Node.js -- See [Node.js > `Buffer`](/docs/runtime/nodejs-apis#node_buffer) +- See [Node.js > `Buffer`](/docs/runtime/nodejs-apis#node-buffer) --- @@ -172,7 +172,7 @@ Bun implements the following globals. - [`global`](https://nodejs.org/api/globals.html#global) - Node.js -- See [Node.js > `global`](/docs/runtime/nodejs-apis#node_global). +- See [Node.js > `global`](/docs/runtime/nodejs-apis#global). --- @@ -220,7 +220,7 @@ Bun implements the following globals. - [`process`](https://nodejs.org/api/process.html) - Node.js -- See [Node.js > `process`](/docs/runtime/nodejs-apis#node_process) +- See [Node.js > `process`](/docs/runtime/nodejs-apis#node-process) --- |