Building a Todo List App with MERN Stack | Todo Application using MongoDB + Express + React + Node

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

КОМЕНТАРІ • 106

  • @HamaadAfzal
    @HamaadAfzal 6 місяців тому +9

    Finally My first mern project is done because of you, Thanks Brother

    • @nithyasri-b5c
      @nithyasri-b5c 2 місяці тому

      Can I get the source code of it

  • @programming3617
    @programming3617 7 місяців тому +3

    Great Lecture. Thanks for making things clear😊😊 May God bless you with lots of his blessings ameen.

  • @nicholemcgrew2588
    @nicholemcgrew2588 8 місяців тому +4

    Short, sweet, and complete! Thank you!

  • @saikishorevangala8123
    @saikishorevangala8123 Рік тому +31

    Sir can you provide the code as a reference purpose for cross checking.

  • @gabriel_macena
    @gabriel_macena 4 місяці тому +1

    Thank you for helping me with my first MERN project!

  • @Srilakshmi-xh5iy
    @Srilakshmi-xh5iy 8 місяців тому +3

    when i am editing the code in app.jsx file localhost stops working and it is showing a vitehmr update and it doesnt show any ouput

  • @Vivek-fc7cl
    @Vivek-fc7cl 3 місяці тому +3

    Bro when we add,update or delete the task at that time whole page reloads that is logically not correct because we are working in react, it should reload only that part of application

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

    Bro, u r a good tutor.😊
    But please use background noise remover software.

  • @anti-tankartur677
    @anti-tankartur677 6 місяців тому

    Taught me so much about mern stack thanks !!!

  • @atone-p2t
    @atone-p2t 5 місяців тому

    really good and clear explanation!

  • @iamakshobhyashukla
    @iamakshobhyashukla 17 днів тому +1

    thank you bro.

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

    Thank you so much! It works!

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

    requr=est is not defining in post showing not connecting with database

  • @VikashYadav-eo1qi
    @VikashYadav-eo1qi 2 місяці тому

    tank you so much...such a helpful video

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

    I am unable to find my local IP address port number. Every time I try, it shows an axios error.

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

      u r using mongoDB atlas
      use this IP 0.0.0.0/0

    • @ZainAli-fh7oj
      @ZainAli-fh7oj 4 місяці тому

      just write localhost. It's the same

    • @CoderUzair
      @CoderUzair Місяць тому

      hi! how did you resolve your issue?

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

    pls how did you add the icons?

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

      fixed

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

      @@uniquetechexploration Can you please help me fix the icons issue?

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

      Can u tell how u fixed it?

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

      we have alot of icons...search on google for some mostly in formats like bscircleFill@@winterflake741

  • @Harshitsharma-jn6qj
    @Harshitsharma-jn6qj 6 місяців тому +1

    how to post update date and (fetch data without reload),
    for eg: when we click like button of youtube video it don't make reload, it make realtime,like instagram also?

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

      As for your example we can do that because that is front-end but we you would like to update your post then it must reload to fetch updated data.

    • @Harshitsharma-jn6qj
      @Harshitsharma-jn6qj 6 місяців тому +1

      ​@@codewithyousaf bhai samjh ni aaya aap ne kya lika hai..
      par mujhe ek solution mil gya hai..
      mai useeffect se sara data managa rha tha backend se or usse state mai rakh rha tha...
      to abb jab bhi koi post ya like function callkarega too fir se useeffect call krwa denge.. jise ab ka updated data bhi aajaye or refresh bhi na kr na pade..👍👍
      or dusra tarika redux use krke bhi ho jaye ga..

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

    how to deploy this project with local mongoDb database , what i have to set up local mongodb before deployment , please tell me

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

      Localhost MongoDB is only available on your computer. If you deploy, you need to use MongoDB Atlas so that you can run your code anywhere.

  • @Motivational_talks
    @Motivational_talks 6 місяців тому +1

    when you are trying to access to display the todos...user.task .....here task is what?? means from where you get this?? pls response

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

    Amazing! Thank you so much!

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

    I'd stuck on 7:30, the style from App.css cannot be applied, what it can be?

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

      I think className should be applied

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

      Could you elaborate?@@aravindp2595

    • @coronareyesmauriciodassel5345
      @coronareyesmauriciodassel5345 Рік тому +5

      To apply the CSS classes to the elements, you need to assign those classes to the JSX elements using the className attribute. Here's how you can do it in your components:
      In Home.jsx, you can apply the home class to the outer element like this: function Home() {
      const [todos, setTodos] = useState([]);

      return (
      {/* Apply the 'home' class */}
      To Do List

      {/* ... */}

      );
      }

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

      function Create() {
      return (
      {/* Apply the 'create_form' class */}

      Add

      );
      }

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

      thank you bro it is working now
      @@coronareyesmauriciodassel5345

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

    Pls is there way to uncheck the checkbox back to false to reflect on the db?

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

    App css ho kaam ni kar rha...10 baar se jada repeat Kiya lekin problem ni Mila...

  • @MS-hn9dk
    @MS-hn9dk Місяць тому

    See if you changes in css then show all code don;t skip css part because it error comes in BsCirclefill
    or how is resolve please write in commet

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

    Sir can we use effect for 33:00 for re rendering
    By using todos list in dependency array??

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

    This bro is working outside

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

    mongodb compass is not creating the database automatically

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

    Thx alot bro!!

  • @sampathkumar1301
    @sampathkumar1301 6 місяців тому +2

    update todo not there in front end

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

    please do ecommerce project using node js, express js, mongodb, react with payment getways

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

    Can I get the source code? I was stuck in the project.
    It's a request from my side.

  • @thanos.42078
    @thanos.42078 3 місяці тому

    great video

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

    thank you so much bro

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

    it say net::err_connection_refused
    how to solve??

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

    thanks for this vide

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

    source code ??

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

    Icons are not working, what to do brother?

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

      I think when something like icons is not working, it is the best opportunity to explore other icons libraries out there!!

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

    sir can you please provide source code for cross check

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

    brilliant

  • @gg.cip0t
    @gg.cip0t Рік тому +1

    I have learnt ReactJs and AntDesign, How much time do gou think I can learn Express,MongoDB and NodeJs?

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

      if you are naruto you can learn fast , if you are nobito you need more time

  • @عبدالعزيزسليم-ص3س
    @عبدالعزيزسليم-ص3س 11 місяців тому

    thank you

  • @NeerajSharma-sk2rs
    @NeerajSharma-sk2rs Рік тому +1

    if we do not want vite and want simple npm install, is it ok cause i never use vite and i am also not comfortable with this

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

      Yes it is ok to use although

    • @abdu11ahh
      @abdu11ahh 5 місяців тому

      why are you not comfortable with it ? any specific reason?

  • @zaidkhan4555
    @zaidkhan4555 6 місяців тому +5

    Not good for beginner It involve lack of explaination and also improper speech which pose difficulty for viewer to understand

    • @codebypc
      @codebypc 8 днів тому

      Tere baap ko bol bna dega

  • @democracyprevails
    @democracyprevails 8 місяців тому +1

    bro code please

  • @VijayChauhan-Krishna
    @VijayChauhan-Krishna 10 місяців тому

    thanks bhai

  • @zitansalehin6941
    @zitansalehin6941 6 місяців тому +2

    Too much code skipping..you shouldn’t make video like this..wastage of time

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

      you have to create request in thunder client by yourself otherwise it won't work

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

    css not working....

  • @VandanaTripathi-r4d
    @VandanaTripathi-r4d 2 місяці тому

    Can I get a sourcee code pleaseee???

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

    15:55 what is the local ip adress of mine ? how to know that ?
    can i know it using
    - ipconfig in cmd
    which i should use among :
    IPv4 Address. . . . . . . . . . . .:
    Subnet Mask . . . . . . . . . . . :
    Default Gateway . . . . . . . . . :

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

      hi, did u solve this?? i couldnot find my local ip address port number. everytime it shows axios error

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

    Can we get the source code?

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

    MERN E-commerce project...

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

    wheres the source code ?

  • @MDSALIM-lj7hs
    @MDSALIM-lj7hs Рік тому

    please share source code as well.

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

    ❤❤❤❤😊

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

    please do projects sir

  • @rombohak-lgite4400
    @rombohak-lgite4400 5 місяців тому

    thx

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

    Source code?

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

    29:49 done=true not working..

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

    where is the source coooooooooooooooooooooooooooooooooooooode

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

    Oh ma gud where is the source code

  • @technicalg6808
    @technicalg6808 День тому

    12:50

  • @Sans24-kj5zm
    @Sans24-kj5zm 4 місяці тому

    Pdf hongi to upload krdo

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

    24:00

  • @k-CE-OmkarPathak
    @k-CE-OmkarPathak 7 місяців тому

    AxioError coming

  • @Garvit41
    @Garvit41 3 місяці тому

    One of the worst tutorial I have ever came across

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

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

    I am unable to get id in my console please help @Code With Yousaf

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

      when you pass it to the server side through URL then destruct it from req.params if it was empty then check your front-end

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

      Hey! I had the same problem, i just needed to add a "key={todo._id}" on the classname task div:
      ----
      todos.map(todo => (

      handleEdit(todo._id)}>
      ----
      It worked for me, i don't know why his code is working.

  • @arularasiselvaraj-rs4dj
    @arularasiselvaraj-rs4dj 11 місяців тому

    Location .relaod didn't work

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

    How did u add the icon

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

    Can I get the source code?