Hono on AWS with SST
Create and deploy a Hono API in AWS with SST.
There are two ways to deploy a Hono app to AWS with SST.
We’ll use both to build a couple of simple apps below.
Examples
We also have a few other Hono examples that you can refer to.
Serverless
We are going to build a serverless Hono API, add an S3 Bucket for file uploads, and deploy it using a Lambda function.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our app.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
2. Add an API
Let’s add a Hono API using an AWS Lambda. Update your sst.config.ts
.
We are enabling the function URL for this.
Start dev mode
Start your app in dev mode. This runs your functions Live.
This will give you the URL of your API.
3. Add an S3 Bucket
Let’s add an S3 Bucket for file uploads. Update your sst.config.ts
.
Link the bucket
Now, link the bucket to the API.
4. Upload a file
We want the /
route of our API to generate a pre-signed URL to upload a file to our S3 Bucket. Create an index.ts
file and add the following.
Install the npm packages.
Then add the relevant imports.
5. Download a file
We want the /latest
route of our API to generate a pre-signed URL to download the last uploaded file in our S3 Bucket. Add this to your routes in index.ts
.
Test your app
Let’s try uploading a file from your project root. Make sure to use your API URL.
Now head over to https://gyrork2ll35rsuml2yr4lifuqu0tsjft.lambda-url.us-east-1.on.aws/latest
in your browser and it’ll download the file you just uploaded.
6. Deploy your app
Now let’s deploy your app.
You can use any stage name here but it’s good to create a new stage for production.
Containers
We are going to build a hit counter Hono API with Redis. We’ll deploy it to AWS in a container using the Cluster
component.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our app.
We are picking the nodejs template.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
2. Add a Cluster
To deploy our Hono app in a container, we’ll use AWS Fargate with Amazon ECS. Replace the run
function in
This creates a VPC with a bastion host, an ECS Cluster, and adds a Fargate service to it.
The dev.command
tells SST to instead run our Astro site locally in dev mode.
3. Add Redis
Let’s add an Amazon ElastiCache Redis cluster. Add this below the Vpc
component in your sst.config.ts
.
This shares the same VPC as our ECS cluster.
Link Redis
Now, link the Redis cluster to the container.
This will allow us to reference the Redis cluster in our Astro site.
Install a tunnel
Since our Redis cluster is in a VPC, we’ll need a tunnel to connect to it from our local machine.
This needs sudo to create a network interface on your machine. You’ll only need to do this once on your machine.
Start dev mode
Start your app in dev mode.
This will deploy your app, start a tunnel in the Tunnel tab, and run your Astro site locally in the MyServiceDev tab.
4. Connect to Redis
We want the /
route to increment a counter in our Redis cluster. Let’s start by installing the npm package we’ll use.
Add the relevant imports to your index.ts
.
Let’s update the /
route.
Test your app
Let’s head over to http://localhost:3000
in your browser and it’ll show the current hit counter.
You should see it increment every time you refresh the page.
5. Deploy your app
To deploy our app we’ll first add a Dockerfile
. This is building our app by running our build
script from above.
View Dockerfile
This is pretty much the same setup from the Hono docs.
Let’s also add a .dockerignore
file in the root.
To compile our TypeScript file, we’ll need add the following to the tsconfig.json
.
Install TypeScript.
And add a build
script to our package.json
.
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 Hono app deployed as a Fargate service.
Connect the console
As a next step, you can setup the SST Console to git push to deploy your app and monitor it for any issues.
You can create a free account and connect it to your AWS account.