SvelteKit is a metaframework built on top of Svelte. In this article, you will learn how you can use Prisma to add database access to your SvelteKit application.
Table of Contents
- Introduction
- Prerequisites
- 1. Set up your SvelteKit starter project
- 2. Set up Prisma
- 3. Create your database schema and connect your SQLite database
- 4. Define SvelteKit load functions
- 5. Define SvelteKit action functions
- Conclusion
Introduction
SvelteKit is a meta framework built on top of Svelte; it’s what Next.js is to React. SvelteKit 1.0 introduced load and action functions that open up multiple possibilities. For instance, building full-stack applications that query data directly from your application.
This guide will teach you how to use load and action functions with Prisma to build a simple blog application. You will add a database and Prisma ORM to an existing application that currently only stores data in memory.
The application is built using these technologies:
- SvelteKit as the framework
- Prisma as the ORM for migrations and querying
- TypeScript as the programming language
- SQLite as the database
Prerequisites
To successfully finish this guide, you’ll need Node.js installed. If VS Code is your editor, you can install the Prisma extension to improve your developer experience by adding syntax highlighting, formatting, and auto-completion on your Prisma schema files.
1. Set up your SvelteKit starter project
To get started, navigate to the directory of your choice and run the following command to clone the repository:
Install dependencies and fire up the application:
Awesome! Your application should be running on http://localhost:5173/ .

The starter project has the following folder structure:
Currently, the project uses dummy data from a data.json file to display published posts on the / route and unpublished posts on the drafts route. You currently cannot view individual posts and sign up as a user or create a post draft. You’ll implement these functionalities with SvelteKit functions and Prisma ORM later in the guide. Moreover, you’ll also replace data fetching from dummy data with a database.
It’s now time to get your hands dirty!
2. Set up Prisma
Start by installing Prisma’s CLI as a development dependency with the following command:
You can now set up Prisma in the project by running the following command:
prisma init created a new prisma directory with a schema.prisma file inside it and a .env (dotenv) file at the root folder in your project.
The schema.prisma defines your database connection and the Prisma Client generator. For this project, you’ll use SQLite as your database provider for an easier setup. The --datasource-provider sqlite shorthand automatically sets up Prisma using SQLite. However, you can use another database provider simply by changing the database provider from sqlite to your preferred choice and updating the connection URL.
The Prisma schema looks should resemble this:
The DATABASE_URL environment variable is stored in the .env file. It specifies the path to the database. The database does not yet currently exist but will be created in the next step.
3. Create your database schema and connect your SQLite database
First, you’ll define a Post and User model with a one-to-many relationship between User and  Post. Navigate to prisma/schema.prisma update it with the code below:
Set up seeding for your database
Currently, the application uses dummy data directly from the data.json file. Since the database will be empty when created, you will set up a script to seed some data when it's created.
Create a seed.ts file in the prisma folder and add the seed script below:
Note: The
@prisma/clientpackage has not yet been installed and should see a squiggly line next to the import. The package will be installed in the next step when you generate a migration.
Then add this property to your package.json file:
Refer Prisma docs for more information on seeding.
Create your first database migration
To apply the defined schema to your database, you'll need to create a migration.
The above command will execute the following:
- Create a migration called init located in theÂ/prisma/migrations directory.
- Create the dev.db database file, since it does not exist, and apply the new SQL migration.
- Install @prisma/clientpackage.
- Generate Prisma Client based on the current schema.
- Seed the database with sample data defined in the previous step.
You should see similar output on your terminal to the one below:
You can browse the data in your database using Prisma Studio. Run the following command:
Set up a Prisma Client singleton
Create a prisma.ts file in the src/lib folder to create a Prisma Client instance that you’ll use throughout your application. Paste in the code below:
4. Define SvelteKit load functions
A SvelteKit load function provides data when rendering a +page.svelte component. Load functions perform GET requests to a route.
For this project, you’ll implement the following load functions:
//drafts/p/[id]/: Get all published posts
Create a +page.server.ts file inside src/routes folder and add the code below:
The function above does the following:
- Queries all published posts, including their authors, using the includeoption.
- Assigns the responseresult to thefeedobject response.
Currently, the client is still using dummy data from data.json instead of the SQLite database. Replace the code in src/routes/+page.svelte with the code below to rectify this:
- dataprop to receive the returned response from the load function.
- Iterates through a list of feedvalues that are then displayed through thePostcomponent.
You can experiement with this a little further by adding a post through Prisma Studio and setting the published property to true. It should appear as part of the published posts on the / route.
/drafts: Get all drafted posts
Create a +page.server.ts file inside src/routes/drafts folder and add the code below:
The function above does the following:
- Queries all unpublished posts, including their authors relation.
- Returns the draftsobject response.
Similar to the previous step, you’re going to connect the client side to your SQLite database instead of data.json file. Replace the existing code with the code below:
- dataprop to receive the returned response from the load function.
- Iterates through a list of draftsvalues that are then displayed through thePostcomponent.
/p/[id]: Get a single post by its id
Create a +page.server.ts file inside src/routes/p/[id] folder, and add the code below:
The load function above does the following:
- Leverages the load function dataprop to get the postid.
- Queries the database for a single post by its id.
- Returns the postobject response.
Test out this functionality by clicking on a post in either the the / or /drafts routes. You should view a post's details along with it's author information.
You’ve added Prisma queries to load data into your application. At this point, your application should be able to fetch published and unpublished posts from your database. You should also be able to view individual post details when you select them.
5. Define SvelteKit action functions
A SvelteKit action is a server-only function that handles data mutations. Actions execute non-GET requests (POST, PUT, PATCH, DELETE) made to your route.
Actions are defined in the +page.server.ts files created in their respective route folders that will act as your action URLs.
For this project, you’ll implement these actions:
/create: Create a new post in your database
Create a  +page.server.ts file inside src/routes/create folder and add the code below:
The snippet above does the following:
- Declare a defaultaction to create a new post in your database. The action receives aRequestEventobject, allowing you to read the data from the form in/create/+page.sveltewithrequest.formData().
- Add a validation check for any missing required inputs. The failfunction will return an HTTP status code and the data to the client.
- Add a type check for entries that aren’t string values.
- Query the database with a request body expecting:
- title: String (required): The title of the post
- content: String (required): The content of the post
- authorEmail: String (required): The email of the user that creates the post (the user should already exist)
 
- Throw a redirect to /draftsroute once the query is executed.
Click the +Create draft button and fill in the form to create a new post. Once you’ve submitted it, your post should appear on the /draft route.
/p/[id]: Publish and Delete a post by its id
To the existing +page.server.ts file inside src/routes/p/[id] folder, add the code below:
The snippet does the following:
- Imports the redirectandActionsutilities.
- publishPostaction: defines a query that finds a post its- idand updates the published property to true.
- deletePostaction: defines a query that deletes a post by itsÂ- id.
Select any unpublished post; you should be able to delete or publish it. You should also be able to delete published posts.
/signup: Create a new user
Create a +page.server.ts file inside src/routes/signup folder and add the code below:
The code does the following:
- The defaultaction receives submitted data from the signup form.
- Checks for any missing required inputs and validity of the user’s email.
- Add a type check for entries that aren’t string values.
- Add a validation check for user’s email.
- Creates a new user with the following request body:
- name: String(required): the user’s name
- email: String (required): the user’s email address
Select the Signup button and fill in the form. You should now be able to add a new user to your database.
Congratulations, you’re done. 🎉 You’ve successfully added Prisma queries to mutate data in your database. You can successfully create, publish or delete a post. You can also add a new user to your database as an author.
The complete code for this guide can be found on GitHub.
Conclusion
In this article, you learned how to fetch and mutate data from an SQLite database using SvelteKit’s Load and Action functions with Prisma.
You can explore other methods of interacting with your database, like using an api folder to define REST endpoints, a type-safe tRPC API or a GraphQL API.
Happy hacking!
Don’t miss the next post!
Sign up for the Prisma Newsletter