AGAshish Ghimireinpacketlife.hashnode.dev·Jun 4 · 8 min readI Am a Router — And I Just Made My First FriendA first-person journey through OSPF neighbor formation, from loneliness to full adjacency. I woke up alone. Someone had just configured OSPF on my interface — network 10.0.0.0 0.0.0.255 area 0 — and 00
MPMadhu Pinfirstofmany.hashnode.dev·May 25 · 7 min readPosting all my little learnings in CCNA I have always wondered how devices communicate over the internet, how offices connect hundreds of computers together, or how engineers troubleshoot networks, then networking is the foundation behind a00
SKShubham Kumar Singhinblog.realdev.club·May 20 · 66 min readBuilding a ShelfLife Household Inventory Tracker — Frontend In the previous blog, we designed and built the backend architecture for ShelfLife — a collaborative household inventory tracking application focused on reducing food waste. Backend Blog: https://shub00
YPYejun Parkinyejunpark3.hashnode.dev·May 17 · 14 min readInside the Internet's Core: A Deep Dive into the Network Layer Data PlaneIf you've ever wondered what actually happens when a packet of data leaves your laptop and somehow finds its way to a server thousands of miles away — passing through dozens of nameless machines along00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 5 min readCreating Routes and Handling Requests with ExpressBuilding web servers with Node.js is powerful, but working directly with the built-in HTTP module can become repetitive and difficult to manage as applications grow. This is where Express.js comes in.00
SDSouparna Dharainsouparna-tech.hashnode.dev·May 10 · 6 min readCreating Routes and Handling Requests with ExpressIf you've ever tried building a web application using only Node.js’s built-in http module, you know the feeling. You start with a simple if (req.url === '/'), but before you know it, your code is a ta00
NRNavdeep Rohillainexpress-js-by-navdeep.hashnode.dev·May 10 · 7 min readCreating Routes and Handling Requests with ExpressModern web applications constantly receive requests from users. Whether someone opens a webpage, submits a login form, or fetches data from an API, the server must know how to respond correctly. Node.00
HBHimanshu Balaniinblog.himanshubalani.com·May 10 · 6 min readTrading Boilerplate for Sanity: Routing and Requests in Express.js If you want to build a web server in Node.js, you don't actually need any external libraries. Node has a built-in http module that is perfectly capable of listening to a network port and responding to00
MGMrinal Gintech-log.hashnode.dev·May 10 · 3 min readCreating Routes and Handling Requests with ExpressWhat Express.js Is Express.js is a lightweight web framework built on top of Node.js. It simplifies backend development by providing: routing middleware request handling response handling Withou00
NMNikhil Maliinnm-backend.hashnode.dev·May 10 · 9 min readCreating Routes and Handling Requests with ExpressIf you followed along with our last post, you did something amazing: you built a raw HTTP server using nothing but Node.js core modules. You opened a port, listened for traffic, and successfully sent 00