aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/ecosystem
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guides/ecosystem')
-rw-r--r--docs/guides/ecosystem/elysia.md2
-rw-r--r--docs/guides/ecosystem/express.md2
-rw-r--r--docs/guides/ecosystem/hono.md2
-rw-r--r--docs/guides/ecosystem/mongoose.md2
-rw-r--r--docs/guides/ecosystem/stric.md2
-rw-r--r--docs/guides/ecosystem/vite.md2
6 files changed, 6 insertions, 6 deletions
diff --git a/docs/guides/ecosystem/elysia.md b/docs/guides/ecosystem/elysia.md
index b0231ff95..ae1a8e37b 100644
--- a/docs/guides/ecosystem/elysia.md
+++ b/docs/guides/ecosystem/elysia.md
@@ -1,5 +1,5 @@
---
-name: Build an HTTP server using Elysia
+name: Build an HTTP server using Elysia and Bun
---
[Elysia](https://elysiajs.com) is a Bun-first performance focused web framework that takes full advantage of Bun's HTTP, file system, and hot reloading APIs. Get started with `bun create`.
diff --git a/docs/guides/ecosystem/express.md b/docs/guides/ecosystem/express.md
index 55bd468bd..211e117c4 100644
--- a/docs/guides/ecosystem/express.md
+++ b/docs/guides/ecosystem/express.md
@@ -1,5 +1,5 @@
---
-name: Build an HTTP server using Express
+name: Build an HTTP server using Express and Bun
---
Express and other major Node.js HTTP libraries should work out of the box. 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.
diff --git a/docs/guides/ecosystem/hono.md b/docs/guides/ecosystem/hono.md
index f0497da1f..6d928a655 100644
--- a/docs/guides/ecosystem/hono.md
+++ b/docs/guides/ecosystem/hono.md
@@ -1,5 +1,5 @@
---
-name: Build an HTTP server using Hono
+name: Build an HTTP server using Hono and Bun
---
[Hono](https://github.com/honojs/hono) is a lightweight ultrafast web framework designed for the edge.
diff --git a/docs/guides/ecosystem/mongoose.md b/docs/guides/ecosystem/mongoose.md
index 406d2e77e..bfcb957cc 100644
--- a/docs/guides/ecosystem/mongoose.md
+++ b/docs/guides/ecosystem/mongoose.md
@@ -1,5 +1,5 @@
---
-name: Read and write data to MongoDB using Mongoose
+name: Read and write data to MongoDB using Mongoose and Bun
---
MongoDB and Mongoose work out of the box with Bun. This guide assumes you've already installed MongoDB and are running it as background process/service on your development machine. Follow [this guide](https://www.mongodb.com/docs/manual/installation/) for details.
diff --git a/docs/guides/ecosystem/stric.md b/docs/guides/ecosystem/stric.md
index 309a85709..102bd339f 100644
--- a/docs/guides/ecosystem/stric.md
+++ b/docs/guides/ecosystem/stric.md
@@ -1,5 +1,5 @@
---
-name: Build an HTTP server using StricJS
+name: Build an HTTP server using StricJS and Bun
---
[StricJS](https://github.com/bunsvr) is a minimalist, fast web framework for Bun. Use `bun init` to create an empty project.
diff --git a/docs/guides/ecosystem/vite.md b/docs/guides/ecosystem/vite.md
index 62c116e02..857e11aae 100644
--- a/docs/guides/ecosystem/vite.md
+++ b/docs/guides/ecosystem/vite.md
@@ -1,5 +1,5 @@
---
-name: Build a frontend using Vite
+name: Build a frontend using Vite and Bun
---
{% callout %}