Full-Stack Next.js Blog App with Prisma and Tanstack React Query

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 28

  • @phil5293
    @phil5293 11 місяців тому +3

    Wow. Once again you've outdone yourself. Beautiful tutorial. Almost all latest React technologies - Prisma, Axios, Tailwindcss in one tutorial. Only technology missing is NextAuth.js. You could implement a simple Prisma seed for the initial data. Love it

  • @ADARSHKUMAR-me4zn
    @ADARSHKUMAR-me4zn 8 місяців тому

    Hi Cand Dev, I was looking for a tutorial that uses all the latest technologies and found your video. This video is very helpful to upskills me from MERN stack.
    Long way to go, you deserve many more subs

    • @CandDev
      @CandDev  8 місяців тому

      Glad it was helpful!

  • @aaronmacken
    @aaronmacken 9 місяців тому

    thanks for making this, been having a hard time managing / syncing state through my server / client components, was just hoping someone posted a github link with a fullstack project for me to read thru

  • @Racine14
    @Racine14 7 місяців тому +1

    Thank you for this awesome video.

  • @user-hi4pl1ph6t
    @user-hi4pl1ph6t 11 місяців тому +1

    I was able to follow your code and it works exactly as seen in the video 😊. Thankyou very much Sir

    • @CandDev
      @CandDev  11 місяців тому

      Great 👍

  • @somebody-17546
    @somebody-17546 Рік тому +6

    Can I have the github code of this project please

  • @gauravbawa5609
    @gauravbawa5609 Рік тому +1

    thank so much for this video solved many issues for me

  • @EduarteBDO
    @EduarteBDO 11 місяців тому

    Pretty good blog app, just one thing, in api/posts/[postId] in the GET function of the route.ts you included tag:true, but for this project tag isn't used, because the FormPost.tsx queries all tags already and only use tagId to select the default tag

  • @bklynpeter
    @bklynpeter 7 місяців тому

    Wonderful video, thanks for doing it! Could I ask what the github repo is for this project? I typed something wrong somewhere and I'd love to compare, lol!

  • @anggaerlangga4948
    @anggaerlangga4948 Рік тому

    mantap, thanks mas
    ditunggu utk study case2 selanjutnya

  • @Epsaind
    @Epsaind 11 місяців тому

    Nice , thanks :D

  • @claudenirfilho5276
    @claudenirfilho5276 11 місяців тому

    Awesome video, got a new subscriber. If its not much, can I request you a video of an application just like this one but with authentication? CRUD in a specific user.

  • @clintonevans2387
    @clintonevans2387 11 місяців тому

    Great video! Has anyone noticed the delay in the edit form? If you name a post called "post 1" and go edit: the edit form says "post 1". If you change that to "post 2" and then go back to edit it says "post 1" until you refresh the page. Any ideas?

  • @mutiaraayun6062
    @mutiaraayun6062 4 місяці тому

    got error No QueryClient set, use QueryClientProvider to set one when using mutation. somehow i have set QueryClientProvider in my root file. btw I'm using next.js page route, any suggetion to solve it ? thank u in advancce

  • @minhhieple6483
    @minhhieple6483 11 місяців тому

    May I ask, What is the props and cons of using react-query compare with fetch in Next.js 13 ?

  • @nanonkay5669
    @nanonkay5669 11 місяців тому +1

    Two weeks later, Daisy UI is at version 3.8.3 lol

  • @fokspoks
    @fokspoks 5 днів тому

    44:41 can you say what's that postgresql app is?

    • @CandDev
      @CandDev  11 годин тому

      you can just download and install from here www.postgresql.org/

  • @niconel7659
    @niconel7659 8 місяців тому

    Really appreciate your time making a video about ... well what you describe in the title. But why waste so much precious time on Tailwind/Daisy/Lucid, etc?

    • @thalesrodriguescardoso
      @thalesrodriguescardoso 4 місяці тому

      lol Disagree a billion times... u waste much more using raw css for bigger projects lmao

  • @IncomingLegend
    @IncomingLegend 10 місяців тому

    source code?

  • @delamichlich2243
    @delamichlich2243 11 місяців тому

    😕 Promo*SM

  • @lufiporndre7800
    @lufiporndre7800 9 місяців тому

    This guy is not friendly 😢😢

  • @aurelmark9310
    @aurelmark9310 11 місяців тому

    missed in useQuery Tag[] to add in index.d.ts

    • @aurelmark9310
      @aurelmark9310 11 місяців тому

      to fix this - in index.d.ts create export type Tag = {
      id: string;
      name: string;
      };