CRUD tutorial
Any CRUD tutorial for t3 stack for beginners to learn from?
5 Replies
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
shameless plug: i have a blog on a simple app made with the t3 stack: https://nexxel.dev/blog/ct3a-guestbook
Shoubhit Dash
Build a Full Stack App with create-t3-app
Let's build a guestbook with all parts of the T3 stack - Next.js, tRPC, Prisma, Tailwind CSS and Next Auth
Hey, thanks for the recommendation.
CRUD is simple, it just means Create, Read, Update Delete, things most APIs should be able to do.
I think what you really want to learn is REST. If you learn the principals behind REST, everything will make sense, including tRPC & GraphQL
This is an oldie but a goodie to get started: https://www.youtube.com/watch?v=7YcW25PHnAA
Learn HTTP methods: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
Learn HTTP status codes: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
https://codevoweb.com/build-a-fullstack-trpc-crud-app-with-nextjs/ here is an article that I found helpful!
Edem
CodevoWeb
Build a Full Stack tRPC CRUD App with Next.js - CodevoWeb
This article will teach you how to build a full-stack tRPC CRUD (Create, Read, Update, and Delete) app with Next.js. The tRPC API will be...