SvelteKit adapter for OpenWorkers.
bun add -d @openworkers/adapter-sveltekit// svelte.config.js
import adapter from '@openworkers/adapter-sveltekit';
export default {
kit: {
adapter: adapter({
outDir: 'build', // Output directory (default: 'build')
functions: true // Generate mini-workers for API routes (default: false)
})
}
};| Option | Type | Default | Description |
|---|---|---|---|
outDir |
string |
'build' |
Output directory for the build |
functions |
boolean |
false |
Generate separate mini-workers for each API route |
nodeCompat |
boolean |
false |
Include shims for Node.js built-in modules |
build/
├── _worker.js # Main SSR worker
├── _routes.json # Route manifest for edge routing
├── assets/ # Static assets and prerendered pages
└── functions/ # Mini-workers for API routes (if functions: true)
├── api-hello.js
└── api-users.js
When functions: true, the adapter generates a separate mini-worker for each +server.ts endpoint:
/api/hello/+server.ts→functions/api-hello.js/api/users/+server.ts→functions/api-users.js
The route mappings are included in _routes.json:
{
"functions": [
{ "pattern": "/api/hello", "worker": "functions/api-hello.js" },
{ "pattern": "/api/users", "worker": "functions/api-users.js" }
]
}This prepares for native project routing in the OpenWorkers runner, where each function can be deployed as a separate worker for better isolation and scaling.
For proper types on platform.env, add @openworkers/workers-types:
bun add -d @openworkers/workers-typesThen in src/app.d.ts:
/// <reference types="@openworkers/workers-types" />
declare global {
namespace App {
interface Platform {
env: {
KV: BindingKV;
ASSETS: BindingAssets;
};
}
}
}
export {};Build your SvelteKit app, then deploy it with the OpenWorkers CLI:
# Build
bun run build
# Deploy
ow workers upload my-app ./buildFor a first deployment, you'll need to set up the worker and its assets binding:
# Create the worker
ow workers create my-app -d "My SvelteKit App"
# Create a storage bucket for static assets
ow storage create my-storage
# Create an environment and bind the storage as ASSETS
ow env create my-app-env
ow env bind my-app-env ASSETS my-storage --type assets
# Link the environment to the worker
ow workers link my-app my-app-env
# Build and upload
bun run build
ow workers upload my-app ./build- world-time-app — SSR-rendered clocks with server-side positioned hands
- httpbin — HTTP request testing tool
- rock-paper-scissors — Provably fair Rock Paper Scissors game
MIT