Example: SvelteKit + Cloudflare D1

Note: 🧪 This is a example application and is not officially supported by Cloudflare.

An example SvelteKit project on Cloudflare Pages (https://developers.cloudflare.com/pages/framework-guides/deploy-a-svelte-site/) that connects to a D1 database.

There are a few things you need to do:

  1. Update svelte.config.ts to import import adapter from '@sveltejs/adapter-cloudflare' instead of adapter-auto
  2. Update src/app.d.ts to expand the Platform interface to the below:
    interface Platform {
      env: {
        DB: D1Database;
      };
      context: {
        waitUntil(promise: Promise<any>): void;
      };
      caches: Cache
  1. Create the Pages project by connecting it your GitHub repository: https://developers.cloudflare.com/pages/framework-guides/deploy-a-svelte-site/#deploy-with-cloudflare-pages
  2. Bind your D1 database - making sure the binding name matches what you defined in src/app.d.ts (in this example, it's DB) - per https://developers.cloudflare.com/pages/platform/functions/bindings/#d1-databases

You can then re-deploy the app. The SvelteKit documentation also has a comprehensive Cloudflare Pages tutorial.

Accessing D1 from a server endpoint

Svelte's server endpoints allow you to define API endpoints: to access a D1 database, you want to access platform.env.BINDING_NAME.prepare (or other D1 API methods) — no different from a non-SvelteKit app.

An example server endpoint that accesses D1 at /api/users/+server.ts - corresponding to https://your-app.pages.dev/api/users resembles the following:

import type { RequestHandler } from "@sveltejs/kit";

/** @type {import('@sveltejs/kit').RequestHandler} */
export async function GET({ request, platform }) {
  // Matches the "DB" binding you create: make sure the names match!
  let result = await platform.env.DB.prepare(
    "SELECT * FROM users LIMIT 5"
  ).run();
  return new Response(JSON.stringify(result));
}

License

Copyright Cloudflare, Inc (2023). Apache-2.0 licensed. See the LICENSE file for details.

Top categories

svelte logo

Want a Svelte site built?

Hire a Svelte developer
Loading Svelte Themes