diff options
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/file-io.md | 2 | ||||
-rw-r--r-- | docs/api/globals.md | 6 | ||||
-rw-r--r-- | docs/api/http.md | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md index 0f1642ef3..bb16337e0 100644 --- a/docs/api/file-io.md +++ b/docs/api/file-io.md @@ -1,5 +1,5 @@ {% 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) 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/ecosystem/nodejs) implementation of the [`node:fs`](https://nodejs.org/api/fs.html) module. {% /callout %} Bun provides a set of optimized APIs for reading and writing files. diff --git a/docs/api/globals.md b/docs/api/globals.md index d966c1861..4916f8d50 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#node_buffer) +- See [Node.js > `Buffer`](/docs/ecosystem/nodejs#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#node_global). +- See [Node.js > `global`](/docs/ecosystem/nodejs#node_global). --- @@ -214,7 +214,7 @@ Bun implements the following globals. - [`process`](https://nodejs.org/api/process.html) - Node.js -- See [Node.js > `process`](/docs/runtime/nodejs#node_process) +- See [Node.js > `process`](/docs/ecosystem/nodejs#node_process) --- diff --git a/docs/api/http.md b/docs/api/http.md index 1ef0302cb..4cb55349a 100644 --- a/docs/api/http.md +++ b/docs/api/http.md @@ -1,5 +1,5 @@ {% callout %} -**Note** — This page documents the `Bun.serve` API. This API is heavily optimized and represents the recommended way to build HTTP servers in Bun. Existing Node.js projects may use Bun's [nearly complete](/docs/runtime/nodejs#node_http) implementation of the Node.js [`http`](https://nodejs.org/api/http.html) and [`https`](https://nodejs.org/api/https.html) modules. +**Note** — This page documents the `Bun.serve` API. This API is heavily optimized and represents the recommended way to build HTTP servers in Bun. Existing Node.js projects may use Bun's [nearly complete](/docs/ecosystem/nodejs#node_http) implementation of the Node.js [`http`](https://nodejs.org/api/http.html) and [`https`](https://nodejs.org/api/https.html) modules. {% /callout %} ## Send a request |