DEV Community

Cover image for Using Netlify Functions with SvelteKit
Rodney Lab
Rodney Lab

Posted on • Originally published at rodneylab.com

Using Netlify Functions with SvelteKit

☁️ Using Netlify Functions with SvelteKit

Why would you want to be using Netlify Functions with SvelteKit instead of the inbuilt SvelteKit functionality? Like NextJS from the React world SvelteKit supports server side rendering as well as server side routes from which you can run your server side code. There are a couple of reasons that come to mind for using Netlify functions with SvelteKit though. Firstly, if you are migrating your site from another platform and have existing Netlify functions, you can speed up the migration by transplanting over the existing Netlify functions.

Another reason for using Netlify functions in your SvelteKit app is to gain access to other languages in your functions. You can write Netlify functions in Rust among other languages. Using API server routes in SvelteKit, you would be limited to JavaScript. You might choose Rust over JavaScript when performance is critical as typically you can optimise Rust code to run faster than equivalent JavaScript.

The good news is (as we will see in a moment) that besides a couple of configuration files, you don't need much to get your Netlify functions working in tandem with SvelteKit.

πŸ§‘πŸ½β€πŸŽ“ How to Get Started Using Netlify Functions with SvelteKit

We'll look at these three steps in turn which will get you using Netlify Functions with SvelteKit in no time:

  1. netlify.toml configuration file,

  2. Netlify adapter,

  3. create functions.

βš™οΈ netlify.toml Config File

Create a netlify.toml file in the root directory of your project and add the following content:

[build]
  command = "npm run build"
  publish = "build"

[dev]
 command = "svelte-kit dev"

[functions]
  directory = "netlify/functions"
  node_bundler = "esbuild"
Enter fullscreen mode Exit fullscreen mode

Probably the most important part here is specifying the directory where we will put the Netlify functions (netlify/functions).

πŸ”Œ Netlify Adapter

Svelte has build adapters which help customise your site build for your hosting platform. This is exactly what the Netlify adapter does. Part of its work is to convert any server endpoints to Netlify functions. This means your build app will have a render function (generated by the adapter) as well as any Netlify functions you define yourself.

The SvelteKit adapters are still evolving. As such, current best practice is to choose the next version, which you can install with pnpm, npm or yarn:

pnpm i -D @sveltejs/adapter-netlify@next
Enter fullscreen mode Exit fullscreen mode

On top, you will need to let SvelteKit know that you want it to use this adapter:

/** @type {import('@sveltejs/kit').Config} */
import adapter from '@sveltejs/adapter-netlify';
import { imagetools } from 'vite-imagetools';
import { mdsvex } from 'mdsvex';
import preprocess from 'svelte-preprocess';

const config = {
  extensions: ['.svelte', '.md', '.svelte.md'],
  preprocess: [
    mdsvex({ extensions: ['.svelte.md', '.md', '.svx'] }),
    preprocess({
      scss: {
        prependData: "@import 'src/lib/styles/variables.scss';",
      },
    }),
  ],
  kit: {
    adapter: adapter(),
    files: {
      hooks: 'src/hooks',
    },
    // hydrate the <div id="svelte"> element in src/app.html
    target: '#svelte',
    vite: {
      define: {
        'process.env.VITE_BUILD_TIME': JSON.stringify(new Date().toISOString()),
      },
      plugins: [imagetools({ force: true })],
    },
  },
};

export default config;
Enter fullscreen mode Exit fullscreen mode

Import the adapter to your svelte.config.js file (line 2) and then set it as SvelteKit's adapter (lineΒ 18).

πŸ–₯ The Netlify Functions

Next you can create the netlify/functions directory in your project and add any functions there. You are not limited to JavaScript here. Take a look at the post on using Rust for Netlify functions to get started with other languages.

Here are a couple of JavaScript test functions you can use to try out your setup. The first can be used to get a client IP. You might need this if you are doing spam detection. The second just returns a JSON object:

exports.handler = async (event, _, callback) => {
  const ip = event.headers['x-forwarded-for'];
  const client = ip.split(',')[0];
  callback(null, {
    statusCode: 200,
    body: client,
  });
};
Enter fullscreen mode Exit fullscreen mode
exports.handler = async function () {
  return {
    statusCode: 200,
    body: JSON.stringify({ message: 'Good morning!' }),
  };
};
Enter fullscreen mode Exit fullscreen mode

πŸ’― Testing it out

Using Netlify Functions with SvelteKit: test output for good morning function show stringifed J S O N object in browser. Object has a message field whose value is Good morning!

In the Netlify tradition, configuration and boilerplate are kept to a minimum. To get these functions running, you should just need to commit these changes to your git repository, and deploy as normal. To test the client-ip function, you need to point your browser to the /.netlify/functions/client-ip route (see the working example here: sveltekit-netlify-functions.rodneylab.com/.netlify/functions/client-ip). Similarly for the good-morning function, point your browser to /.netlify/functions/good-morning. Again, there is a live test site at sveltekit-netlify-functions.rodneylab.com/.netlify/functions/good-morning.

I have also created a full working repo on the Rodney Lab GitHub page.

πŸ™ŒπŸ½ Wrapup

In this post we saw:

  • why you might want to use Netlify functions with SvelteKit,

  • how to configure a Netlify SvelteKit build,

  • how to add Netlify functions to your SvelteKit app.

This post came from a question left in a comment. So if this post spurs further questions, please do drop a comment below and I might be able to create more content in response.

πŸ™πŸ½ Feedback

Have you found the post useful? Which other hosting service would you like to know how to host a SvelteKit site on? Would you like to see posts on another topic instead? Get in touch with ideas for new posts. Also if you like my writing style, get in touch if I can write some posts for your company site on a consultancy basis. Read on to find ways to get in touch, further below. If you want to support posts similar to this one and can spare a few dollars, euros or pounds, please consider supporting me through Buy me a Coffee.

Finally, feel free to share the post on your social media accounts for all your followers who will find it useful. As well as leaving a comment below, you can get in touch via @askRodney on Twitter and also askRodney on Telegram. Also, see further ways to get in touch with Rodney Lab. I post regularly on SvelteKit as well as other topics. Also subscribe to the newsletter to keep up-to-date with our latest projects.

Top comments (2)

Collapse
 
askrodney profile image
Rodney Lab

Hey, I have a free Getting Started with SvelteKit post which takes you through the basics and also a paid one which looks at Svelte and SvelteKit in more detail. Hope that helps! How will you use SvelteKit?

Collapse
 
skit profile image
jj_skit

Do you or anyone you know have a paid course on Sveltekit that you would recommend?