svelte-adapter-appengine

Adapter for Svelte that integrates with Google Cloud Appengine

Usage no npm install needed!

<script type="module">
  import svelteAdapterAppengine from 'https://cdn.skypack.dev/svelte-adapter-appengine';
</script>

README

svelte-adapter-appengine

Utilize the Google Cloud App Engine infrastructure to host SvelteKit content.

npm Tests

Setup

In your standard SvelteKit project:

  • npm install --save-dev svelte-adapter-appengine
  • add adapter to svelte.config.js:
+import appengine from "svelte-adapter-appengine";

/** @type {import('@sveltejs/kit').Config} */
export default {
  kit: {
+   adapter: appengine(),
    target: "#svelte",
  },
};
  • npm run build.
  • Application can then be deployed by running gcloud app deploy --project <CLOUD_PROJECT_ID> .appengine_build_output/app.yaml. (learn more about gcloud utility here)

Adapter Output

The SSR part of SvelteKit is hosted on App Engine in a nodejs runtime. It's running using polka mimicking @sveltejs/adapter-node .

Static files are served directly from Cloud Storage without going through the nodejs webserver. Routes for all the static assets are automatically generated in app.yaml by the adapter.

Example

An examplee app can be accessed on https://svelte-demo-329602.uc.r.appspot.com/, this is the default demo app from sveltekit deployed with the default settings.