Note: 🧪 This is a example application and is not officially supported by Cloudflare.
D1 (https://developers.cloudflare.com/d1/) currently requires you to query it via a Cloudflare Worker, but since Workers allow you to create your own HTTP endpoints directly, it's easy to stand up a custom HTTP API in front of D1.
A HTTP API is useful for connecting to D1 from existing legacy applications (Node.js, Go, AWS Lambda); building adapters for existing web frameworks (Rails or Django); and/or otherwise querying your D1 databases from non-Workers clients.
This API is designed to be used by trusted clients: it assumes that the client connecting over HTTP can query any table and/or issue any query against the database the API exposes. This is ideal for connecting your own applications. Connecting untrusted clients is out of scope of this example.
To deploy this HTTP API in front of your D1 database:
- Create a D1 database: https://developers.cloudflare.com/d1/get-started/
- Clone the repo:
git clone https://github.com/elithrar/http-api-d1-example.git
- Install the dependencies:
npm i
- Create a key via
openssl rand -base64 32
andwrangler secret put APP_SECRET
- Update
wrangler.toml
to include the binding for your[[d1_databases]]
and add youraccount_id
(or simply remove the placeholder) - Deploy it via
wrangler deploy
- Access the API over HTTP at the URL you deployed it to - e.g.
https://http-api-d1.<your-worker-subdomain>.workers.dev/query/all/
$ export D1_HTTP_TOKEN=tokenfromstep2above
$ curl -H "Authorization: Bearer ${D1_HTTP_TOKEN}" "https://http-api-d1.<your-worker-subdomain>.workers.dev/query/all/" --data '{"queryText": "SELECT 1"}'
// Returns results resembling the below:
{"results":[{"1":1}],"meta":{"duration":0.12522200029343367,"changes":0,"last_row_id":0,"changed_db":false,"size_after":167936}}%
You can import the D1HTTP
API and use it within an existing application:
$ npm i @elithrar/http-api-d1
In your existing application:
import { D1HTTP } from "@elithrar/http-api-d1";
From there, you can instantiate the D1HTTP
class by passing it a D1Database
and a sharedSecret
(string) inside a fetch()
handler:
export default {
async fetch(req: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
const api = new D1API(env.DB, env.APP_SECRET)
// Pass our request, env and context to our new API
return api.run(req, env, ctx)
}
This example exposes three (3) endpoints to a client.
/query/all/
- identical to D1's stmt.all()
method and returns an array of rows.
{ "queryText": "SELECT * FROM users WHERE id = ?", "params": "3819848" }
/query/batch/
- identical to D1's db.batch()
method, and accepts an array of queries and (optional) bound parameters.
{
"batch": [
{ "queryText": "SELECT * FROM [Order] ORDER BY random() LIMIT 1" },
{ "queryText": "SELECT * FROM [Order] ORDER BY random() LIMIT 1" }
]
}
/query/exec
- identical to D1's db.exec()
method, and accepts a single-shot query.
{"queryText": "INSERT INTO users VALUES(12313,'user@example.com')}
The HTTP API is built with Hono, an ultrafast web framework with native support for Cloudflare Workers and Zod for schema validation.
Copyright Cloudflare, Inc (2023). Apache-2.0 licensed. See the LICENSE file for details.