Apr 7 Β· 5 min read Β· In the previous article, we exposed our backend using AWS Lambda and Amazon API Gateway, creating a fully functional serverless API. However, real-world applications require more than just an API. To
Join discussionMar 22 Β· 23 min read Β· This is going to be a fun, practical tutorial demonstrating how to build a Java faceted full-text search API (like the ones powering sites like Amazon)! Weβll use an interesting dataset which showcase
Join discussion
Mar 8 Β· 6 min read Β· Modern cloud applications are moving away from managing servers. Instead of provisioning virtual machines, maintaining operating systems, and managing scaling manually, teams are increasingly adopting
Join discussionFeb 17 Β· 4 min read Β· By the end of Day 31, students will clearly understand: What MySQL is Why we use MySQL in real projects How to install MySQL Community Server (latest) What is MySQL Workbench and why we need it How MySQL fits with Node.js projects π No coding...
Join discussionFeb 17 Β· 4 min read Β· π― Why This Comparison Is Important? As a Node.js developer, one of the most important decisions is choosing the right database. Two very popular databases are: MySQL (SQL / Relational Database) MongoDB (NoSQL / Document Database) Both are powerf...
Join discussionFeb 12 Β· 9 min read Β· ποΈ Complete Folder Structure todo-app/ β βββ server.js βββ package.json βββ .env β βββ config/ β βββ db.js β βββ models/ β βββ User.js β βββ Todo.js β βββ Comment.js β βββ controllers/ β βββ userController.js β βββ todoController.js β ββ...
Join discussionFeb 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 discussionFeb 12 Β· 3 min read Β· πΉ Why Do We Need populate()? In MongoDB, collections are separate.When we use referencing, we only store an ID, not full data. Example: { "passengerName": "Amit", "train": "65fae91c2b..." } This ID alone is not useful for UI. π populate() help...
Join discussion