Create a Todo CRUD API in Node.js (Express & MongoDB)

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

КОМЕНТАРІ • 9

  • @rubenn6160
    @rubenn6160 2 місяці тому +1

    If node shows an error about the cluster or something like this, don't use a cluster created few minutes ago, I solved this problem using an old cluster that I had used it
    Thanks for the video, it was very helpful

    • @code-with-zihad
      @code-with-zihad  2 місяці тому

      Yes, Newly created clusters can take some time to become usable, and they often need to allow connections from all IPs (0.0.0.0). If someone already has a cluster, they should definitely use it.
      Thanks for your comment bro ✨

  • @new-in8yt
    @new-in8yt 9 днів тому

    Thank you so much
    how to use express prisma postgresql ?

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

    Thanks! Your english accent is awesome! Very understandable even for non natives like me.

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

    This was Very Helpful
    Cheers

  • @AnjehMbah-n2l
    @AnjehMbah-n2l 3 місяці тому

    Very helpful. Learnt a lot. Although I made a few changes, I tested api/routes in postman and they all work. Can you make a video of how we can transfer the api's into controller folder and render views in html?

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

    Why not using json return - will it be work for mobile apps

    • @code-with-zihad
      @code-with-zihad  2 місяці тому +1

      res.send() is more flexible but you have to manage it from frontend appropriately or you can simply use res.json() and Yes, res.json() and res.send() both will work on mobile apps.