diff --git a/docs/guides/ecosystem/render.md b/docs/guides/ecosystem/render.md index 94d2669030d02e..cad2792b122bb0 100644 --- a/docs/guides/ecosystem/render.md +++ b/docs/guides/ecosystem/render.md @@ -30,9 +30,10 @@ bun add express ``` --- + Define a simple server with Express: -```app.ts +```ts#app.ts import express from "express"; const app = express(); @@ -48,6 +49,7 @@ app.listen(port, () => { ``` --- + Commit your changes and push to GitHub. ```bash @@ -64,11 +66,11 @@ In your [Render Dashboard](https://dashboard.render.com/), click `New` > `Web Se In the Render UI, provide the following values during web service creation: -| | | -| ----------- | --------- | -| **Runtime** | `Node` | +| | | +| ----------------- | ------------- | +| **Runtime** | `Node` | | **Build Command** | `bun install` | -| **Start Command** | `bun app.js` | +| **Start Command** | `bun app.js` | ---