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

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024

Комментарии • 30

  • @somebody-17546
    @somebody-17546 Год назад +6

    Can I have the github code of this project please

  • @Racine14
    @Racine14 7 месяцев назад +1

    Thank you for this awesome video.

  • @phil5293
    @phil5293 Год назад +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

  • @nanonkay5669
    @nanonkay5669 Год назад +1

    Two weeks later, Daisy UI is at version 3.8.3 lol

  • @mutiaraayun6062
    @mutiaraayun6062 5 месяцев назад

    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

  • @bklynpeter
    @bklynpeter 8 месяцев назад

    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!

  • @CrystalsDentistry
    @CrystalsDentistry 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 👍

  • @gauravbawa5609
    @gauravbawa5609 Год назад +1

    thank so much for this video solved many issues for me

  • @aaronmacken
    @aaronmacken 10 месяцев назад

    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

  • @claudenirfilho5276
    @claudenirfilho5276 Год назад

    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.

  • @fokspoks
    @fokspoks 24 дня назад

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

    • @CandDev
      @CandDev  19 дней назад

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

  • @minhhieple6483
    @minhhieple6483 11 месяцев назад

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

  • @muhammaderza7097
    @muhammaderza7097 14 дней назад

    For ID the data type must cuid( ) ?

    • @CandDev
      @CandDev  14 дней назад

      No, you can also use uuid(), the important is that will generate unique IDs.

  • @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 5 месяцев назад

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

  • @EduarteBDO
    @EduarteBDO Год назад

    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

  • @clintonevans2387
    @clintonevans2387 Год назад

    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?

  • @ADARSHKUMAR-me4zn
    @ADARSHKUMAR-me4zn 9 месяцев назад

    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  9 месяцев назад

      Glad it was helpful!

  • @anggaerlangga4948
    @anggaerlangga4948 Год назад

    mantap, thanks mas
    ditunggu utk study case2 selanjutnya

  • @IncomingLegend
    @IncomingLegend 11 месяцев назад

    source code?

  • @delamichlich2243
    @delamichlich2243 11 месяцев назад

    😕 Promo*SM

  • @lufiporndre7800
    @lufiporndre7800 9 месяцев назад

    This guy is not friendly 😢😢

    • @ilahazs
      @ilahazs 9 месяцев назад

      why

  • @Epsaind
    @Epsaind Год назад

    Nice , thanks :D

  • @aurelmark9310
    @aurelmark9310 Год назад

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

    • @aurelmark9310
      @aurelmark9310 Год назад

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