A quick demo for rendering Svelte server-side (SSR), but within a Cloudflare Worker!
This is a demo meant to illustrate how to get Svelte SSR in a Cloudflare worker. It is intentionally very minimal – it extends the official svelte-template.
$ git clone https://github.com/lukeed/svelte-ssr-worker
$ cd svelte-ssr-worker
$ npm installThe following are npm scripts included in the project.
They are invoked via npm run <name> on the command line; for example: npm run build:dom.
This is an alias for sequentially running the build:dom and build:ssr scripts.
Note: These are sequential because
build:ssrimports thepublic/index.htmlthatbuild:domproduces.
Builds the client for production, using the src/index.dom.js entry point.
All files within the /public directory comprise your front-end client application.
Important: These must be uploaded to a storage bucket and made available on a CDN location.
Alternatively, you may upload/publicas a static Workers Site.
Builds your Cloudflare Worker code, using the src/index.ssr.js entry point.
The final worker file is saved to build/index.js, which can be deployed to your Cloudflare Worker directly.
Note: Deployment is not included in this template.
Important: This script must run after
build:dombecause it relies on itspublic/index.htmloutput.
Starts a local development server.
This is used to preview/visit your front-end application only.
Note: This does not run your Worker code.
This is an alias for running the start and watch:dom scripts simultaneously.
Watches your src/index.dom.js and its imports for changes.
Watches your src/index.ssr.js and its imports for changes.
You should have a storage bucket setup and attached to a CDN ahead of time.
Once the CDN address is known, you will need to update the {{CDN}} value within config/shared.js.
Then, after a successful build, you will need to:
- Upload
public/*to your storage bucket (or similar) - Upload
build/index.jsto Cloudflare Workers
Note: Cloudflare's
wranglercan handle both of these steps!
You're done~! 🎉
MIT © Luke Edwards