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

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

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

  • @rubenn6160
    @rubenn6160 3 месяца назад +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  3 месяца назад

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

    Thank you so much
    how to use express prisma postgresql ?

  • @thomasedson8369
    @thomasedson8369 3 месяца назад

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

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

    This was Very Helpful
    Cheers

  • @AnjehMbah-n2l
    @AnjehMbah-n2l 4 месяца назад

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

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

    • @code-with-zihad
      @code-with-zihad  3 месяца назад +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.