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

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ต.ค. 2024
  • How To Build CRUD API In Nodejs and Express.js | MongoDB CRUD In Express for Beginners | MongoDB Atlas CRUD using Mongoose In 30 Minutes
    Learn how to create a Todo CRUD API in Node.js using Express and MongoDB in this tutorial. We will cover how to write code for MongoDB CRUD operations, specifically focusing on Mongoose CRUD operations. By following along with this tutorial, you will understand how to make a CRUD in Express.js and create a fully functional API. Whether you are a beginner or looking to enhance your web development skills, this tutorial by Code with Zihad is perfect for you. Let's dive into the world of MongoDB and Mongoose CRUD operations together!
    ➤ www.codeathlet...
    Related Keywords ➤
    crud api tutorial for beginners, mongodb tutorial, build rest api, how to build todo crud api, node express, mongodb crud api, how to make a crud in node express js, how to write code for mongodb crud operation, simple crud api in node js and express mongodb, how to write code for mongodb crud operations, mongoose crud, mongodb and mongoose crud node js, mongoose crud operations, how to crud in mongoose,
    #crudapi #nodejs #expressjs #mongodb #codewithzihad

ความคิดเห็น • 8

  • @rubenn6160
    @rubenn6160 17 วันที่ผ่านมา +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  17 วันที่ผ่านมา

      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 ✨

  • @thomasedson8369
    @thomasedson8369 หลายเดือนก่อน

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

  • @AnjehMbah-n2l
    @AnjehMbah-n2l 2 หลายเดือนก่อน

    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?

  • @emekaokonkwo626
    @emekaokonkwo626 2 หลายเดือนก่อน

    This was Very Helpful
    Cheers

  • @bjp_for_2024
    @bjp_for_2024 หลายเดือนก่อน

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

    • @code-with-zihad
      @code-with-zihad  หลายเดือนก่อน +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.