Bun on AWS with SST
Create and deploy a Bun app to AWS with SST.
We are going to build an app with Bun, add an S3 Bucket for file uploads, and deploy it to AWS in a container with SST.
Before you get started, make sure to configure your AWS credentials.
Examples
We also have a few other Bun examples that you can refer to.
1. Create a project
Let’s start by creating our Bun app.
Init Bun Serve
Replace your index.ts
with the following.
This starts up an HTTP server by default on port 3000
.
Add scripts
Add the following to your package.json
.
This adds a dev
script with a watcher.
Init SST
Now let’s initialize SST in our app.
This’ll create an sst.config.ts
file in your project root and install SST.
2. Add a Service
To deploy our Bun app, let’s add an AWS Fargate container with Amazon ECS. Update your sst.config.ts
.
This creates a VPC with an ECS Cluster, and adds a Fargate service to it.
The dev.command
tells SST to instead run our Bun app locally in dev mode.
Start dev mode
Run the following to start dev mode. This’ll start SST and your Bun app.
Once complete, click on MyService in the sidebar and open your Bun app in your browser.
3. Add an S3 Bucket
Let’s add an S3 Bucket for file uploads. Add this to your sst.config.ts
below the Vpc
component.
Link the bucket
Now, link the bucket to the container.
This will allow us to reference the bucket in our Bun app.
4. Upload a file
We want a POST
request made to the /
route to upload a file to our S3 bucket. Let’s add this below our Hello World route in our index.ts
.
Add the imports. We’ll use the extra ones below.
And install the npm packages.
5. Download the file
We’ll add a /latest
route that’ll download the latest file in our S3 bucket. Let’s add this below our upload route in index.ts
.
Test your app
To upload a file run the following from your project root.
This should upload the package.json
. Now head over to http://localhost:3000/latest
in your browser and it’ll show you what you just uploaded.
6. Deploy your app
To deploy our app we’ll first add a Dockerfile
.
This is a pretty basic setup. You can refer to the Bun docs for a more optimized Dockerfile.
Let’s also add a .dockerignore
file in the root.
Now to build our Docker image and deploy we run:
You can use any stage name here but it’s good to create a new stage for production. This’ll give the URL of your Bun app deployed as a Fargate service.
Congrats! Your app should now be live!
Connect the console
As a next step, you can setup the SST Console to git push to deploy your app and view logs from it.
You can create a free account and connect it to your AWS account.