Create a serverless, globally distributed REST API with Fauna
In this tutorial, you learn how to store and retrieve data in your Cloudflare Workers applications by building a REST API that manages an inventory catalog using Fauna as its data layer.
- How to store and retrieve data from Fauna in Workers.
- How to use Wrangler to store secrets securely.
- How to use Hono as a web framework for your Workers.
Building with Fauna, Workers, and Hono enables you to create a globally distributed, strongly consistent, fully serverless REST API in a single repository.
Fauna is a document-based database with a flexible schema. This allows you to define the structure of your data – whatever it may be – and store documents that adhere to that structure. In this tutorial, you will build a product inventory, where each product
document must contain the following properties:
- title - A human-friendly string that represents the title or name of a product.
- serialNumber - A machine-friendly string that uniquely identifies the product.
- weightLbs - A floating point number that represents the weight in pounds of the product.
- quantity A non-negative integer that represents how many items of a particular product there are in the inventory.
Documents are stored in a collection. Collections in document databases are groups of related documents.
For this tutorial, all API endpoints are public. However, Fauna also offers multiple avenues for securing endpoints and collections. Refer to Choosing an authentication strategy with Fauna for more information on authenticating users to your applications with Fauna.
All of the tutorials assume you have already completed the Get started guide, which gets you set up with a Cloudflare Workers account, C3, and Wrangler.
Open the Fauna dashboard in your browser and log in to your Fauna account.
In the Fauna dashboard:
- Select CREATE DATABASE.
- Provide a valid name.
- Select a Region Group.
- Select CREATE.
To create a collection named Products, enter the FQL query in the SHELL window on right side of the screen.
Select Run. You will see an output similar to the following.
You must create a secret key to connect to the database from your Worker.
To create a secret key:
- Go to Explorer in the Fauna dashboard.
- Hover over your database name, and select the key icon to manage your keys.
- Choose Server Role and enter a key name.
The Fauna dashboard displays the key’s secret. Copy and save this server key to use in a later step.
Create a new project by using C3.
To continue with this guide:
- For What would you like to start with?, select
Framework Starter
. - For Which development framework do you want to use?, select
Hono
. - For, Do you want to deploy your application?, select
No
.
Then, move into your newly created directory:
Update the wrangler.toml
file to set the name for the Worker.
Before developing your Worker, add your Fauna secret key as a secret.
There are two types of secrets for development or production.
For development, add a .dev.vars
file on the project root and write your secret.
For production, store your secret safely with wrangler secret put
command:
When prompted, paste the Fauna server secret you obtained earlier.
The FAUNA_SECRET
secret is now injected automatically into your Worker code at runtime.
Install the Fauna JavaScript driver in your newly created Worker project.
Replace the contents of your src/index.ts
file with the skeleton of your API:
This is custom middleware to initialize the Fauna client and set the instance with c.set()
for later use in another handler:
You can access the FAUNA_SECRET
environment variable from c.env.FAUNA_SECRET
. Workers run on a custom JavaScript runtime instead of Node.js, so you cannot use process.env
to access your environment variables.
Add your first Hono handler to the src/index.ts
file. This route accepts POST
requests to the /products
endpoint:
This route applied an FQL query in the fql
function that creates a new document in the Products collection:
To review what a document looks like, run the following query. In the Fauna dashboard, go to Explorer > Region name > Database name like a cloudflare_rest_api
> the SHELL window:
Fauna returns the created document:
Examining the route you create, when the query is successful, the data newly created document is returned in the response body:
If Fauna returns any error, an exception is raised by the client. You can catch this exception in app.onError()
, then retrieve and respond with the result from the instance of ServiceError
.
Next, create a route that reads a single document from the Products collection.
Add the following handler to your src/index.ts
file. This route accepts GET
requests at the /products/:productId
endpoint:
The FQL query uses the byId()
method to retrieve a full document from the Productions collection:
If the document exists, return it in the response body:
If not, an error is returned.
The logic to delete product documents is similar to the logic for retrieving products. Add the following route to your src/index.ts
file:
The only difference from the previous route is that you use the delete()
method, combined with the byId()
method, to delete a document.
When the delete operation is successful, Fauna returns the deleted document and the route forwards the deleted document in the response’s body. If not, an error is returned.
Before deploying your Worker, test it locally by using Wrangler’s dev
command:
Once the development server is up and running, start making HTTP requests to your Worker.
First, create a new product:
You should receive a 200
response similar to the following:
Next, read the document you created:
The response should be the new document serialized to JSON:
Finally, deploy your Worker using the wrangler deploy
command:
This publishes the Worker to your *.workers.dev
subdomain.
As the last step, implement a route to update the quantity of a product in your inventory, which is 0
by default.
This will present a problem. To calculate the total quantity of a product, you first need to determine how many items there currently are in your inventory. If you solve this in two queries, first reading the quantity and then updating it, the original data might change.
Add the following route to your src/index.ts
file. This route responds to HTTP PATCH
requests on the /products/:productId/add-quantity
URL endpoint:
Examine the FQL query in more detail:
Test your update route:
The response should be the entire updated document with five additional items in the quantity:
Update your Worker by deploying it to Cloudflare.
In this tutorial, you learned how to use Fauna with Cloudflare Workers to create a globally distributed, strongly consistent, next-generation serverless REST API that serves data quickly to a worldwide audience.
If you would like to review the full source code for this application, you can find the repository on GitHub.