https://github.com/wpcodevo/deno-todo-api
In this comprehensive guide, you will learn how to use Prisma ORM in a Deno project. To demonstrate how Prisma can be used in a Deno project, we will create a Todo CRUD RESTful API that runs on an Oak middleware framework.
https://github.com/wpcodevo/deno-todo-api
crud-api deno deno-crud-api deno-prisma denoland oak prisma prisma-client prisma-orm
Last synced: 5 months ago
JSON representation
In this comprehensive guide, you will learn how to use Prisma ORM in a Deno project. To demonstrate how Prisma can be used in a Deno project, we will create a Todo CRUD RESTful API that runs on an Oak middleware framework.
- Host: GitHub
- URL: https://github.com/wpcodevo/deno-todo-api
- Owner: wpcodevo
- Created: 2022-10-21T11:00:51.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-24T18:27:37.000Z (about 3 years ago)
- Last Synced: 2025-07-02T08:45:05.394Z (6 months ago)
- Topics: crud-api, deno, deno-crud-api, deno-prisma, denoland, oak, prisma, prisma-client, prisma-orm
- Language: JavaScript
- Homepage: https://codevoweb.com/how-to-setup-and-use-prisma-in-deno
- Size: 10.7 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How To Setup and Use Prisma in Deno
In this comprehensive guide, you will learn how to use Prisma ORM in a Deno project. To demonstrate how Prisma can be used in a Deno project, we will create a Todo CRUD RESTful API that runs on an Oak middleware framework.

## Topics Covered
- Run the Deno Project Locally
- Setup the Deno Project
- Setup Prisma in Deno
- Initialize Prisma
- Create a Database on MongoDB Atlas
- Add the Project to the Prisma Data Platform
- Generate the Prisma Client for Data Proxy
- Create the Validation Schemas
- Create the API Controllers
- Create Record Controller
- Update Record Controller
- Get a Single Record Controller
- Get All Records Controller
- Delete Record Controller
- Create the API Routes
- Add the API Routes to the App
- Test the API Endpoints
- Create a New Record
- Update an Existing Record
- Retrieve a Single Record
- Retrieve all Records
- Delete a Record
Read the entire article here: [https://codevoweb.com/how-to-setup-and-use-prisma-in-deno](https://codevoweb.com/how-to-setup-and-use-prisma-in-deno)