A simple CRUD (Create, Read, Update, Delete) application built with Svelte, based on the sveltekit-express-prisma-starter template.
This mini-project demonstrates basic CRUD operations using:
GET /api/v1/tasks - Get all tasksGET /api/v1/tasks/:id - Get a specific taskPOST /api/v1/tasks - Create a new taskPATCH /api/v1/tasks/:id - Update a taskDELETE /api/v1/tasks/:id - Delete a taskHappy coding! 🎉