Without getting into the workplace philosophy...
... a conversation with my boss went like this.
me: I've never worked with prisma
him: you should learn
I've worked with ORMs but have never worked with prisma ORM.
So... what would be the best starting point for someone that doesn't know anything about prisma ORM?
9 Replies
Skipping coffee for instant knowledge! Let's brew that AI answer now.
For someone new to Prisma ORM, the best starting point would be to explore the official Prisma documentation and try out their Quickstart guide. Here are some recommended resources to get you started:
1. Quickstart (5 min): This guide allows you to explore how to send database queries with Prisma Client against a demo SQLite database – no setup required. It's a great way to get a quick feel for Prisma ORM.
2. Getting Started: This section of the documentation provides a practical introduction to Prisma ORM and helps you learn about the Prisma Client API.
3. Prisma Playground: This is an interactive learning experience that lets you explore Prisma Client queries and learn Prisma Migrate workflows in an isolated sandbox environment, without needing to set up a local development environment.
4. If you prefer a more structured approach, you can follow one of these guides:
- Start a new project from scratch
- Add Prisma to an existing project
These resources will give you a solid foundation in understanding and using Prisma ORM. As you progress, you can dive deeper into specific features and concepts by exploring other sections of the Prisma documentation.
The Complete ORM for Node.js & TypeScript
Getting Started
Prisma Playground: An Interactive Learning Experience for Prisma
Hi @monsto
Did this solve your query?
not really
I'm getting started from absolutely zero here.
Are you looking for a hands-on guide, video tutorial, or just an overview of how Prisma works?
i guess video?
Sakura Dev
YouTube
Prisma Course: Zero To Hero 🎯
✅Prisma Docs👉🏻 https://www.prisma.io/?aff=skdev
In this video, we'll explore the basics of using Prisma for database management. We'll start by defining our data models using Prisma's declarative syntax. Then, we'll learn how to apply migrations and introspect existing databases to create Prisma models.
With our data models in place, we'll div...
Thank you.
You’re welcome
as a user, i'd say Prisma has tons of useful content available in form of docs and media on their socials. personally though, i learn best by doing.
Prisma made it super easy to jump right into building and messing around with stuff.