Feb 12 Β· 4 min read Β· πΉ Why Do We Need Relationships in MongoDB? In real applications, data is connected. Real life example (Railway system π): One Train has many Coaches One User can have many Bookings One Booking belongs to one Train So the question is:π How do ...
Join discussionOct 24, 2025 Β· 2 min read Β· After completing 3 easy level projects. I am finally moving to intermediate stage where I will be focusing on frontend as well as backend development. In this stage I will try and learn new things and build my confidence in full stack development. My...
Join discussionOct 13, 2025 Β· 1 min read Β· Project Title: PlanIt-Lite (ReactJS, TailwindCSS) This is a lighter version of my previously developed project, PlanIt. This is the first and easiest project of this challenge. It will be a single-page frontend project where users can create, edit, d...
Join discussionSep 10, 2025 Β· 8 min read Β· πΉ Introduction In the last sessions, we learned: How to connect Node.js with MongoDB using Mongoose How to define schema & models How to create documents and save them in MongoDB Now itβs time to move forward and learn how to: Read (fetch) doc...
Join discussionSep 8, 2025 Β· 10 min read Β· Below is a professional, student-friendly mini project that demonstrates Schema, Models & Document creation using Mongoose, and ties together the concepts youβve taught so far.Topic: Hotel Management (rooms + bookings). Data stored in MongoDB. Projec...
Join discussionSep 8, 2025 Β· 4 min read Β· π Project Folder Structure hotel-management/ βββ backend/ β βββ models/ β β βββ Booking.js β βββ routes/ β β βββ bookingRoutes.js β βββ config/ β β βββ db.js β βββ server.js β βββ frontend/ β βββ index.html β βββ style.css β ...
Join discussionSep 8, 2025 Β· 4 min read Β· 1. What is MongoDB? MongoDB is a NoSQL database.That means it does not store data in rows and columns like MySQL or PostgreSQL. Instead, it stores data in documents (like JSON objects) inside collections. π Think of it like this: Database = a big f...
Join discussionSep 8, 2025 Β· 5 min read Β· In the last lesson, we installed MongoDB and MongoDB Compass, and created our first database.Now, itβs time to learn the most important part of databases: CRUD operations. π CRUD means: C β Create (Insert new data) R β Read (Get/Find data) U β Up...
Join discussion