1
Create Project
If you haven’t, please create a project through the Nhost Dashboard.
2
Setup Database
Navigate to the SQL Editor of the database and run the following SQL to create a new table 
movies
with some great movies.SQL Editor
Make sure the option
Track this
is enabled
3
permissions
Select the new table 
movies
just created, and click in Edit Permissions to set the following permissions for the public
role and select
action.
4
Setup a SvelteKit Application
Create a SvelteKit application.
Terminal
5
Install the Nhost package for SvelteKit
Navigate to the SvelteKit application and install
@nhost/nhost-js
.Terminal
6
Configure the Nhost client and fetch the list of movies
Create a new file with the following code to creates the Nhost client.Finally, update
./src/lib/nhost.js
Replace
<subdomain>
and <region>
with the subdomain and region for the projectsrc/routes/+page.svelte
to fetch the list of movies.src/routes/+page.svelte
7
The end
Run your project with
npm run dev
and navigate to http://localhost:5173
in your browser.