Build a Livestream App With Next.js | Twitch Clone | Part 1/2

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

КОМЕНТАРІ • 612

  • @codewithantonio
    @codewithantonio  Рік тому +102

    Hello everyone 👋 In this 14 hour tutorial, (part 1 & part 2) you are going to learn how to build an amazing twitch clone / livestreaming application. Both part 1 that you are seeing now and part 2 will be uploaded on youtube for free.
    That being said, there is also "Additional content" in progress for this video, which goes even further than 14 hours. It will include migration to next-auth (auth.js), migration to postgresql (neon db), security improvements, bug fixes and refactors. It will also include all present and future additonal content that you might request for this project :) You can find the links for that in the description.
    Thank you!

    • @chegunmoulero2737
      @chegunmoulero2737 Рік тому +2

      I'm fired up now 🔥.

    • @0xOmzi
      @0xOmzi Рік тому +3

      Leave it for us 😊. There's only so much you can show in 15 minutes.
      Thanks so much for this amazing, in-depth project @CodeWithAntonio 🙏🏽🙌🏽.

    • @BirajKarki-t4k
      @BirajKarki-t4k Рік тому +1

      Man it's 🔥

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

      Thanx for keeping it free. ❤

    • @yugal8627
      @yugal8627 Рік тому +2

      OMG this video is going to be my best video so far, I excited and thrilled to follow it...🔥🔥🔥

  • @amotekundev
    @amotekundev Рік тому +316

    Mans carrying the dev community and thinks we won’t notice. Thank you for all you do 🙏🏾

    • @codewithantonio
      @codewithantonio  Рік тому +20

      Thank you for the nice words :)

    • @therealdevopsintern
      @therealdevopsintern Рік тому +8

      He is taking the dev community to a whole new level.🎉🎉

    • @koji4059
      @koji4059 11 місяців тому +2

      😂😂😂 couldn’t have said it any better ong.

  • @codingman8056
    @codingman8056 9 місяців тому +24

    I am 7+ year experienced Engineer and I would surely say that what you are providing on UA-cam is just next level and worth thousands of dollar course, thank you for providing such a level of content for free .

  • @staceyconnor5466
    @staceyconnor5466 Рік тому +41

    Antonio, I don't know how to thank you for what you have done for community. All I can say is thank you and May God bless you and your family. Amen.

  • @xenmods
    @xenmods Рік тому +52

    🎯 Key Takeaways for quick navigation:
    13:03 🛠️ *ShadUI, a collection of reusable components, is introduced. Antonio installs the library, adds a button component, and showcases how to customize its variants.*
    15:20 🌈 *The tutorial covers the configuration of ShatUI, integrating it with Next.js, ensuring TypeScript compatibility, and exploring customization options for components.*
    20:08 🛣️ *Antonio explains Next.js routing basics, emphasizing the significance of the `app` folder and the `page.tsx` naming convention for client-side routing.*
    22:30 📂 *Creating additional client routes in Next.js is demonstrated by creating a folder and adding a file with the reserved name `page.tsx` inside it, making it accessible at the corresponding route.*
    23:27 🔄 *Server Components vs. Client Components:*
    27:02 📁 *Reserved Keywords for Routes:*
    46:37 🧩 *Integrating Clerk for Authentication:*
    53:45 ⚙️ *Set specific environment variables in your project's environment file to let Clerk know the redirect URLs for sign-in and sign-up routes.*
    56:32 🔐 *Integrate the `clerk user button` component to allow users to log out, and customize the appearance by importing styles from the provided GitHub repository.*
    01:19:35 🔄 *Discussed the importance of synchronizing the authentication system with the database, including handling user creation, deletion, and updates for a complete integration.*
    01:20:57 💽 *Initiated the process of connecting the application to a MySQL database on PlanetScale, explaining alternatives and recommending relational databases for the project.*
    01:31:38 🚀 *Prepared for web hook implementation by exposing the local development environment using ngrok, a crucial step for allowing external services to connect during development.*
    01:40:23 🤖 *Set up Clerk web hooks by enabling and configuring them in the Clerk dashboard, specifying the endpoint and message filtering for user-related events.*
    01:41:59 🔐 *Implemented security measures in the web hook route, including verifying headers, checking the signing secret, and responding with a 200 status.*
    02:12:47 🚀 *Implemented a navigation bar (navbar) with a GameHub logo and "Let's Play" tagline, including a clickable logo redirecting to the homepage.*
    02:19:41 🎨 *The tutorial covers the development of a search bar component using Next.js, React, and Lucid UI.*
    02:30:27 🔒 *User authentication is implemented with Clerk, allowing users to log in, log out, and access their dashboard.*
    02:36:07 🎨 *UI buttons are styled with different variants, and the navbar is designed to be responsive for various screen sizes.*
    02:42:18 📱 *The navbar design is responsive, ensuring a good user experience on both small and large devices.*
    02:42:58 📐 *The tutorial focuses on creating a collapsible sidebar in a Fullstack Twitch Clone using Next.js 14, React, WebRTC, Sockets, Prisma, Tailwind, and MySQL.*
    02:47:31 🌐 *The implementation involves creating a wrapper component to handle sidebar collapse/expand functionality and integrating a server component for fetching data.*
    02:52:42 🎛️ *The use of the `use sidebar` store is demonstrated to manage the collapsed state, dynamically adjusting the sidebar width based on the state.*
    02:53:53 ⚙️ *A toggle button is implemented within a client component, allowing users to collapse and expand the sidebar on desktop, with an automatic collapse on mobile.*
    03:04:48 🛠️ *The tutorial introduces a `hint` component using the `tooltip` package, providing informative tooltips when hovering over elements, enhancing the user experience.*
    03:19:54 🧭 *Added a "Recommended" section to the sidebar with a list of users fetched from the database, displaying usernames.*
    03:20:06 🔄 *Utilized the `useSidebar` hook to determine the collapsed state of the sidebar and conditionally display the "Recommended" label on desktop.*
    03:22:07 📏 *Dynamically adjusted the spacing and styling of the "Recommended" section based on the number of recommended users and the collapsed state.*
    03:25:31 🔄 *Implemented a reusable `UserItem` component in the "Recommended" section to display user information, such as username and image, with conditional styling based on the active state.*
    03:28:42 🌐 *Enhanced the `UserItem` component by using the `usePathName` hook to dynamically generate the hyperlink (`href`) and indicate the active state based on the current path.*
    03:29:22 🖼️ *Developed a dynamic user avatar component with live indicator and optional badge for indicating live status.*
    03:45:51 🚀 *Implemented a reusable "live badge" component with dynamic styling, demonstrating the use of component composition.*
    03:51:36 🚀 *Resolved hydration errors caused by server-client rendering mismatches by conditionally rendering components on the client side using `isClient` or `useIsClient` hook.*
    03:59:41 🦴 *Implemented loading skeletons during server-side rendering to prevent layout flickering and maintain a smoother user experience.*
    04:09:27 🔄 *Modified the recommended service to exclude the currently logged-in user from the recommended list, enhancing data accuracy.*
    04:14:19 🌐 *Demonstrated how to use Enro for exposing a local development server to the internet, ensuring consistency in webhook configurations for services like Clerk.*
    04:14:34 🚀 *Ensure the web hook is running; create a new user account by logging in and check the recommendations.*
    04:16:35 🌐 *Utilize dynamic routing with Next.js by creating a user page with a dynamic username parameter in the URL.*
    04:19:23 🔗 *Implement the Prisma schema for a follow model, establishing relations between users for followers and following.*
    04:24:29 ⚙️ *Develop a follow service with functions like 'isFollowingUser' to check if a user is already being followed, and 'followUser' to initiate a follow action.*
    04:34:52 🔄 *Explore server actions in Next.js by creating an 'onFollow' server action to handle follow actions without the need for a separate API route.*
    04:39:08 🔄 *Use `useTransition` to handle loading state and avoid manual loading toggles.*
    04:40:19 🚫 *Disable follow button if already following or if the action is pending.*
    04:44:33 🔄 *Utilize `revalidatePath` to refresh server components and instantly update data after actions like following/unfollowing.*
    05:03:37 🛠️ *Resolved TypeScript error in Twitch clone project related to following data types.*
    05:04:32 📊 *Implemented logic to dynamically display "Following" label and user data in the sidebar based on the user's following list.*
    05:06:31 🔄 *Utilized server components and revalidation to update the sidebar content dynamically upon following/unfollowing users.*
    05:12:52 🔗 *Extended the application by implementing a blocking system using Prisma, adding a "block" model, relations, and corresponding service functions.*
    05:26:17 🚫 *Users can block each other, preventing interaction.*
    05:27:42 🛑 *Server actions for blocking users are implemented using Next.js.*
    05:41:32 🤔 *The system prevents blocked users from being recommended or followed.*
    05:45:21 🎮 *Preparing for creating a live stream by building a creator dashboard.*
    05:50:19 🚧 *Develops user authentication logic to fetch a user from the database based on the username for the creator dashboard.*
    05:51:26 🧩 *Explains the choice of URL structure for the creator dashboard, allowing modularity for potential future features like enabling moderators.*
    05:58:29 🎨 *Styles the creator dashboard, adding a Navbar and Exit button, and explains modifications to the Navbar for the creator dashboard.*
    06:13:47 🚀 *Improved sidebar styling by adjusting pixel values, addressing flickering issues on collapse.*
    06:14:42 🧭 *Created a navigation component with hard-coded routes (stream, keys, chat, community) and corresponding icons.*
    06:22:14 🔄 *Implemented a loading state in the navigation component to handle asynchronous user data fetching.*
    06:24:56 🚀 *Successfully integrated the stream model into the Prisma schema, allowing for database synchronization when a user is created.*
    06:36:11 🌐 *Demonstrated the setup of ngrok to enable synchronization between local development and the Clerk web hook, testing the creation of a user and associated stream model.*
    06:36:40 🔄 *After setting up Prisma and ensuring a user-stream relationship, consider using `npx Prisma migrate reset` if needed, allowing easy database reset during development.*
    06:37:22 🚀 *To test different states during development, recommend running `enrock` on your domain, updating Clerk webhook, and creating new users with varied settings.*
    06:38:47 🛠️ *Ensure each user in the database has a corresponding stream model for the creator dashboard, enabling the creation of keys for chat and community elements.*
    06:39:13 🚧 *Create a page for chats by defining proper routes and building components in the chat folder. Use unique URLs based on the current username to navigate.*
    Made with HARPA AI

    • @ItsHarsh18
      @ItsHarsh18 2 місяці тому

      Hey buddy is it begginer friendly?. I mean the course ?

    • @xenmods
      @xenmods 2 місяці тому

      @@ItsHarsh18 yes it is! every part is explained in detail

    • @ItsHarsh18
      @ItsHarsh18 2 місяці тому

      @@xenmods thanks buddy ! Would u tell me what's the difference between his discord video nd this video ..like both r based on real time communication right ?

  • @sergiomiranda372
    @sergiomiranda372 Рік тому +59

    You never stop overcoming yourself. Thanks for all your contributions Antonio! Truly, the best NextJS project creator I know right now.... Congratulations!

  • @JC-jz6rx
    @JC-jz6rx Рік тому +34

    It is crazy just how well made, and in depth yet simple to understand these projects are. It speaks both volumes to you as a developer , and as a teacher

    • @codewithantonio
      @codewithantonio  Рік тому +2

      Thank you for the kind words :) Enjoy the project!

  • @ifeody
    @ifeody Рік тому +24

    Literally the best react tutorial youtuber in the world right now

  • @3minutesbibletruth
    @3minutesbibletruth Рік тому +6

    You are the best on youtube currently when it comes to real world projects and advance techs

  • @тими
    @тими Рік тому +3

    This is the best content for learning web.
    La maggior parte dei corsi a pagamento non coprirà mai così tanti argomenti contemporaneamente. Apprezzo molto il vostro duro lavoro, mi motiva a continuare.
    Thanks again, Antonio!

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

      Happy i can be of help! glad you like the projects :)

  • @markus_dev_cwb
    @markus_dev_cwb Рік тому +13

    I am impressed with the project Antonio, 15 hours of a fantastic project.
    Thank you very much!!!

  • @dillonaux
    @dillonaux 10 місяців тому +1

    9:00 - 40:00 is the best breakdown I've heard of the Nextjs 13+ paradigm. Routing, Server components, layouts - all of it so clearly explained. Thank you.

  • @domitriusclark
    @domitriusclark Рік тому +4

    Do not miss out on this one! What an absolute banger Antonio!!

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

    This was sold for billion dollars to Amazon and now Antonio is giving it for free. I don’t know what to say. I’m a developer myself, this video has set a bar very very high. I’m looking for next big thing in my life, will visit you personally in 2024 if I get it done. Thank you for these gem of videos.

    • @codewithantonio
      @codewithantonio  Рік тому +2

      I try my best to exceed expectations with my content, and its easy to do when I have an amazing audience with so much support :)

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

    Antonio never disappoint. I rated you no 1 on here and I believe everyone who watches your videos believed so.

  • @GreedyforKnowledge
    @GreedyforKnowledge 5 місяців тому +1

    I'm literally speechless for what I saw as an intro in this video . Dude u and ur projects are just amazing . Love from India ❤️

  • @blaizeW
    @blaizeW Рік тому +6

    bro's taking nextjs to a whole new level.. goddamn, nice work.

  • @angusmac1576
    @angusmac1576 Рік тому +3

    I look forward to every video because I know it's just going to be better each time. The amount of value this is offering is priceless! Antonio you GOAT!

  • @lukewilliamrimmington
    @lukewilliamrimmington Рік тому +3

    This is the most impressive thing I have seen since sliced bread. Thanks Antonio.

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

    Antonio!
    All I'll say is thanks for what you're doing for the community.

  • @rohanagrawal5747
    @rohanagrawal5747 Рік тому +3

    The man the myth the legend -> GOAT

  • @izaaclem1376
    @izaaclem1376 Рік тому +6

    Hi Antonio. Your dedication to creating tutorials is out of this world. I cant imagine the effort and struggles you go through in recording, editing and coding the projects. thanks men!

  • @mckaymower
    @mckaymower Рік тому +4

    Antonio you deserve every bit of success. You are awesome giving this content for free.

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

    Can't even begin to imagine the amount of work that has gone into making this monster of a project. Big ups man and thank you for consistently pushing out high-quality content.

  • @ayushshende4290
    @ayushshende4290 Рік тому +2

    I said this on the trello clone as well, an architectural breakdown in the beginning would be very helpful. Thanks for the amazing work!

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

    This gotta be the craziest project you've made yet, very excited I have been eagerly waiting in the discord :)

  • @enriquenieblessaco4549
    @enriquenieblessaco4549 Рік тому +2

    Man, I must admit that I wouldn't have improved as much as I have if it wasn't for you and the amazing content you share. Thank you for all your hard work!

  • @Miracle-Style
    @Miracle-Style Рік тому +1

    Since Christmas is approaching ☃️, you have brought the best Christmas gift for us 🎁. Indeed, it's the best project on your channel in 2023 👍. Thank you so much, Antonio. Merry Christmas in advance 🎄.

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

      Thank you very much and merry christmas to you as well!

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

    bro said and delivered it. holly... ur amazing Antônio.

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

    Antonio the Legend with another legendary tutorial :) Excited to learn this tutorial....

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

    My gf and I are from Nairobi Kenya and we have grown so much in a year since discovering your tutorials. Be blessed and please do a stripe clone especially the payment link part. But all in all thank you! God bless.

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

      I am happy I could be of help to you both! Thank you for watching!

  • @sukutamufaya
    @sukutamufaya Рік тому +2

    Hi Antonio, thank you so much for the consistent uploads. Your videos are extremely informative and educational. keep up the great work. Hope your channel reaches millions of people in 2024.

  • @kavindesivalli
    @kavindesivalli Рік тому +7

    Bro 😭You're made of something else. Definitely going through the whole thing!

  • @md.shahebali38
    @md.shahebali38 Рік тому +1

    till today on youtube this is the best tutorial which should be premium, but fortunately it is completely for free., thanks will not be enough for this tutorial.

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

      Thank you for the nice comment, enjoy the video!!

  • @WhatNameHere
    @WhatNameHere 10 місяців тому +1

    I started it right now, looks very appealing especially the functionality part is just on another level. I’ll connect with you once I complete this project with my learning’s. ❤️‍🔥

  • @EfeAsiughu
    @EfeAsiughu Рік тому +2

    Antonio this is awesome, and you're giving it all for free and it's even two part, you're amazing 🧑‍💻🧑‍💻😊😊

  • @suhankim8557
    @suhankim8557 Рік тому +2

    You are such a good teacher to me
    Thanks to you, I'm interested in nextjs and studying it.
    Thank you every time!

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

    I am addicted to your videos.

  • @levelup2014
    @levelup2014 Рік тому +2

    This guy is the embodiment of the 100x developer lmao

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

    I think NextJS team should make you their CEO. You're incredible man, thank you.

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

    One of the best web coder on UA-cam.
    Subscribed :D

  • @rishabh1S
    @rishabh1S Рік тому +3

    Literally unbelievable man, huge respect to your hardwork 🔥

  • @RRathore-b6w
    @RRathore-b6w Рік тому +3

    Thanks Antonio keep up the good work. It means a lot to me.

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

      Happy you like it! :)

    • @RRathore-b6w
      @RRathore-b6w Рік тому +2

      Obviously bro I like your work and learned a lot from your videos. Keep it up and we are here to support you 👍.

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

    Hello Antonio...Thank you so much for this....all of your projects are real world projects

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

    This is an amazing project, I'll do it along with this video and share this you deserve more views.

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

    thank you soo much for something you do it dear antonio,my knowledge of developing has changed since I find your amazing video tutorials

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

    I'm gonna watch the hell out of all your videos holy shit.

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

    I have never seen such amazing project before. Thanks

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

    Wow another great project and this one looks like its going to be amazing. I'm still on Trello as I went on vacation but as soon as I finish that one which will be an the next couple of days, i cant wait to start and learn this one. Thankyou for all your hard work. Its most appreciated.

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

    These projects you put out for us to participate and create with are crazy! I am following you since your airbnb clone and havent even started building that myself, there you are coming with all these bangers. Thank you!

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

      Thank you for your support all the way from my early videos, hope you enjoy the content!

  • @computinginfo3187
    @computinginfo3187 Рік тому +2

    Awesome bro.
    I'm going to follow along, using Django and Django Channels for the backend.
    I've been waiting to see WebRTC in action. Thank you.

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

    I just came across this channel and I must say I will most definitely be following some of these soon. Thanks for your contributions

  • @srinayclg390
    @srinayclg390 11 місяців тому +2

    Genius ❣️

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

    Antonio I like your way how explain everything with diagram and detail please continue this method for upcoming videos also

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

    You're the beeest I've ever seen, thanks so much for your efforts, Antonio!❤❤

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

    You are too good for this world. Thanks.

  • @Daniel-xl7ne
    @Daniel-xl7ne Рік тому +4

    Thank you for this wonderful tutorials. Keep up the good work

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

    This is awesome! Going to take me a whole week to follow along and understand everything, but it will be worth it. Thanks for all you do.

    • @codewithantonio
      @codewithantonio  Рік тому +2

      Keep in mind that this is just part 1 😄 Good luck!

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

    i Havn't watched any of your tutorials yet but they are definitly in my watch later playlist. lets me learn after exams.

  • @Deus-lo-Vuilt
    @Deus-lo-Vuilt Рік тому +5

    Thanks for the clone, I really like your clones and how well you explain, I will do it on your platform, since I like how it is organized there and being able to see the progress

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

    Another great tutorial as usual.
    for the database setup part, you mentioned every system has a different way to set it up. This might be the perfect occasion to add a simple docker tutorial which would add to the already huge content and solve the issue

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

      Yup, or even easier, simply everyone uses planetscale 😄 Might add a free docker course on my platform at some point

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

      That will be good sir

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

    In 3:09:00 by putting `ml-[70px]` as default you could use short-circuit `collapsed || "lg:ml-60"` in the conditional.

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

      Thanks for the tip! Hope you like the tutorial so far :)

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

    bro antonio you are leading the game

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

    And you guys think this man dont deserve to sell courses? Be honnest guys. Greate job Antonio

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

    Its nice to see great content coming for free. thanks antonio for creating such awesome content.

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

    Literally commenting so I can pick this up soon, insane and I’m excited to check this one out ❤

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

    Thanks dude, as always content that exceeds expectations. keep up bro we are supporting you🥰

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

    hats off Sir ! Just insane effort . Love It .

  • @Всё-н3з
    @Всё-н3з Рік тому +1

    Antonio, you are the best. Thank you for so informative videos

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

    The best tutorial I have seen in a very long time, really shows you taking the time to explain everything you are doing with incredible depth and understanding of not just how it works but also what does not work in order for people to understand WHY it works as it does. Amazing! Keep it up, just subscribed! 🥳

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

      Thank you for the feedback, glad you like the content! Enjoy! :)

  • @leulfanuel3550
    @leulfanuel3550 Рік тому +2

    Thank you for this amazing content.🙌

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

    Such and amazing tutorial!
    Could learn so much from this thanks man!

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

    Damn, this is effort right there. Thank you man.

  • @tech.nishan
    @tech.nishan Рік тому +1

    Big thanks to CodeWithAntonio for the awesome free course! Really appreciate it!🎉

  • @ahmedchebbi5921
    @ahmedchebbi5921 Рік тому +3

    Thank you soo much for the hard work! AMAZING AMAZING Content as usual 🎉

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

    Great videos! I cant believe that we can access such a great Web-dev tutorial for free, much better than paid ones.

  • @shivanand0297
    @shivanand0297 Рік тому +2

    salute to you man what a project 🔥🔥🔥🔥

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

    Absolutely incredible!

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

    Great stuff... just wanted to mention that I modified the "user.updated" webhook event type to be more forgiving. If for any reason, you no longer had that user in your database, you could use the "user.updated" event to recreate it. There are a couple use cases I can see that user might not be in your database so I thought this would be a good improvement.

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

    Thanks we really apreciate it king 👑, keep up the good work bro 🔥🔥

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

    Just completed part 1...thanks for your awsome tutorial..till here my project is working fine..thank you❤

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

      Bro what planet scale db it is not showing me free

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

    Bro God just blessed you ! Trust me you are going to haven ! ❤❤❤❤

  • @userj-s2000
    @userj-s2000 Рік тому +1

    He delivered, amazing

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

    Brah deserve million subs

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

    Thanks Antonio 🎉, this is really insane! ❤

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

    Thank you Antonio. You're the best. Btw you forgot to update the loading skeleton to include "want to learn more part" on your website. 🙂

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

      Thanks! there is no skeleton because most projects dont have additional content so it would br weird to fill that space :)

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

    Very excited 👍

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

    Bro, you are the game changer!!

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

    Thanks God we have Antonio on Earth. It's like having Elon Musk but only in Web Dev

  • @Mr-React
    @Mr-React Рік тому +1

    WOW, You are doing such an amazing job man, Thank you so much bro ♥

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

    Love from Finland 🇫🇮
    I love you Boss

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

    Love you Antonio!

  • @mateocarino
    @mateocarino 6 місяців тому

    Such a fantastic job, i think we're all grateful for that! Many thanks!

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

    Antonio, the goat the greatest

  • @ManvirSingh-bm5oy
    @ManvirSingh-bm5oy 6 місяців тому +1

    You're the goat 🐐 hats off to you

  • @Selvakumar-hd6zc
    @Selvakumar-hd6zc Рік тому +1

    The best tutorial

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

    Yeah 🎉 Thanks Antonio ❤

  • @agustinfodrini
    @agustinfodrini Рік тому +2

    Wow this is sublime Antonio! Might be your best project so far. I'm really curious as to how livestream is implemented so I'm definitely looking forward to building this. Btw I'd love to see that Letterboxd clone someday ;) (The Page is so complex no one has dared to make a clone yet on YT lol).

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

    U are rock in dev community 😮❤

  • @huynhphatat3919
    @huynhphatat3919 Рік тому +3

    So great man. Thanks for your contribution to the global IT community. Can I ask when will you upload part 2?