aboutsummaryrefslogtreecommitdiff
path: root/docs/ecosystem/express.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ecosystem/express.md')
-rw-r--r--docs/ecosystem/express.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ecosystem/express.md b/docs/ecosystem/express.md
index 856d2aafc..bbca048ab 100644
--- a/docs/ecosystem/express.md
+++ b/docs/ecosystem/express.md
@@ -1,7 +1,7 @@
-Projects that use Express and other major Node.js HTTP libraries should work out of the box.
+Projects that use Express and other major Node.js HTTP libraries should work out of the box.
{% callout %}
-If you run into bugs, [please file an issue](https://bun.sh/issues) *in Bun's repo*, not the library. It is Bun's responsibility to address Node.js compatibility issues.
+If you run into bugs, [please file an issue](https://bun.sh/issues) _in Bun's repo_, not the library. It is Bun's responsibility to address Node.js compatibility issues.
{% /callout %}
```ts
@@ -22,7 +22,7 @@ app.listen(port, () => {
Bun implements the [`node:http`](https://nodejs.org/api/http.html) and [`node:https`](https://nodejs.org/api/https.html) modules that these libraries rely on. These modules can also be used directly, though [`Bun.serve`](/docs/api/http) is recommended for most use cases.
{% callout %}
-**Note** — Refer to the [Runtime > Node.js APIs](/docs/ecosystem/nodejs#node_http) page for more detailed compatibility information.
+**Note** — Refer to the [Runtime > Node.js APIs](/docs/runtime/nodejs-apis#node_http) page for more detailed compatibility information.
{% /callout %}
```ts