https://github.com/prisma/demo-sveltekit
Demo app for Sveltekit article
https://github.com/prisma/demo-sveltekit
Last synced: 11 months ago
JSON representation
Demo app for Sveltekit article
- Host: GitHub
- URL: https://github.com/prisma/demo-sveltekit
- Owner: prisma
- Created: 2023-02-06T18:05:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-08T16:58:38.000Z (about 2 years ago)
- Last Synced: 2025-07-22T03:08:27.414Z (11 months ago)
- Language: Svelte
- Size: 82 KB
- Stars: 14
- Watchers: 2
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Handle data in SvelteKit with Prisma
This application is built using these technologies:
- [Sveltekit](https://kit.svelte.dev/) as the framework
- [Prisma](https://www.prisma.io/) as the ORM for migrations and database connection
- [TypeScript](https://www.typescriptlang.org/) as the programming language
- [SQLite](https://www.sqlite.org/index.html) as the database
## 🛠️ Getting started
To get started, navigate to the directory of your choice and run the following command to clone the repository:
```
git clone https://github.com/sonylomo/demo-sveltekit.git
cd demo-sveltekit
```
Install dependencies and fire up the application:
```bash
npm install
npm run dev
```
Awesome! Your application should be running on: [http://127.0.0.1:5173/](http://127.0.0.1:5173/)