Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow additional handlers in adapter-cloudflare-workers #13207

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b580a8d
Implement Cloudflare Workers exports in adapter-cloudflare
thomasfosterau Dec 20, 2024
a7c9854
Update implementation to correctly resolve paths.
thomasfosterau Dec 20, 2024
2337ab4
Add additional exports functionality to adapter-cloudflare-workers.
thomasfosterau Dec 20, 2024
05b8ad9
Rename 'exports' to 'handlers'.
thomasfosterau Dec 20, 2024
2d15411
Add changeset.
thomasfosterau Dec 20, 2024
8a418d9
Remove handlers from adapter-cloudflare
thomasfosterau Dec 23, 2024
69c2ff0
Export named exports as well as default export form handlers file.
thomasfosterau Dec 23, 2024
4989a48
Document `handlers` option.
thomasfosterau Dec 23, 2024
b9333f3
Fix missing semicolon and linebreaks.
thomasfosterau Dec 23, 2024
c5c3a99
Update changeset
thomasfosterau Dec 29, 2024
78a6177
Add handlers option to the example config
thomasfosterau Dec 29, 2024
5596bec
Update 70-adapter-cloudflare-workers.md
thomasfosterau Dec 31, 2024
33f0fab
Add missing backtick.
thomasfosterau Dec 31, 2024
615909a
Update documentation/docs/25-build-and-deploy/70-adapter-cloudflare-w…
eltigerchino Dec 31, 2024
d6bdb75
Correctly add fetch method to Cloudflare RPC workers.
thomasfosterau Jan 14, 2025
14ca427
Merge branch 'main' into pr/thomasfosterau/13207
eltigerchino Jan 21, 2025
3c6b08e
Merge branch 'main' into cloudflare-exports
thomasfosterau Feb 27, 2025
4cb65d1
Fix lint errors
thomasfosterau Feb 27, 2025
641c8fc
Remove Durable Objects support.
thomasfosterau Feb 27, 2025
497d1dd
Clarify documentation.
thomasfosterau Feb 27, 2025
e71366e
Make documentation more concise.
thomasfosterau Feb 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ export default {

Path to your custom `wrangler.toml` or `wrangler.json` config file.

### handlers

Path to a file with additional [handlers](https://developers.cloudflare.com/workers/runtime-apis/handlers/) and (optionally) [Durable Objects](https://developers.cloudflare.com/durable-objects/) to be exported from the file the adapter generates. This allows you to, for example, include handlers for scheduled or queue triggers alongside the fetch handler your SvelteKit app.

> [!NOTE] The adapter expects the `handlers` file to have a default export. If you only want to export a Durable Object, add `export default {};` to the file.

> [!NOTE] The adapter will overwrite any [fetch handler](https://developers.cloudflare.com/workers/runtime-apis/handlers/fetch/) exported from the `handlers` file in the generated worker. Most uses for a fetch handler are covered by endpoints or server hooks, so you should use those instead.

### platformProxy

Preferences for the emulated `platform.env` local bindings. See the [getPlatformProxy](https://developers.cloudflare.com/workers/wrangler/api/#syntax) Wrangler API documentation for a full list of options.
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-cloudflare-workers/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function plugin(options?: AdapterOptions): Adapter;
export interface AdapterOptions {
config?: string;
/**
* Path to a file with additional handlers which will be added to the generated worker.
* Path to a file with additional {@link https://developers.cloudflare.com/workers/runtime-apis/handlers/ | handlers} and (optionally) {@link https://developers.cloudflare.com/durable-objects/ | Durable Objects} to be exported from the file the adapter generates.
*/
handlers?: string;
/**
Expand Down
Loading