recipe-svelte-nodejs

Recipe Svelte Nodejs

Zerops x SvelteKit - Node.js

Sveltekit is a framework for building robust, fast web applications using Svelte. Zerops makes deploying and running Sveltekit apps, both server side rendered and static, a breeze. This recipe showcases the Static version, see zeropsio/recipe-svelte-static for the Static version.


Deploy on Zerops

You can either click the deploy button to deploy directly on Zerops, or manually copy the import yaml to the import dialog in the Zerops app.



Recipe features

  • Latest version of SvelteKit with SSR running on a Zerops Node.js service.

Production vs. development

This recipe is ready for production as is, and will scale horizontally by adding more containers in case of high traffic surges. If you want to achieve the highest baseline reliability and resiliace, start with at least two containers (add minContainers: 2 in recipe YAML in the app service section, or change the minimum containers in "Automatic Scaling configuration" section of service detail).


Changes made over the default installation

If you want to modify your existing SvelteKit app to efficiently run on Zerops, follow these steps:

  1. Install the necessary adapter with:
    pnpm i -D @sveltejs/adapter-node
    
  2. Add the adapter to your svelte.config.js to enable SSG. Also, ensure you have @sveltejs/vite-plugin-svelte to avoid errors.
    import adapter from '@sveltejs/adapter-node';
    import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
    
    /** @type {import('@sveltejs/kit').Config} */
    const config = {
      kit: {
        adapter: adapter(),
      },
      preprocess: vitePreprocess(),
    };
    
    export default config;
    

Now, just add the zerops.yml file to the root of your project.



Need help setting your project up? Join Zerops Discord community.

Top categories

Loading Svelte Themes