As an example, let’s deploy a simple Express HTTP server to Render.
1
Step 1
Create a new GitHub repo named
myapp
. Git clone it locally.2
Step 2
Add the Express library.
3
Step 3
Define a simple server with Express:
app.ts
4
Step 4
Commit your changes and push to GitHub.
terminal
5
Step 5
In your Render Dashboard, click
New
> Web Service
and connect your myapp
repo.6
Step 6
In the Render UI, provide the following values during web service creation:
Runtime | Node |
Build Command | bun install |
Start Command | bun app.ts |
onrender.com
URL as soon as the build finishes.
You can view the deploy logs for details. Refer to Render’s documentation for a complete overview of deploying on Render.