VBVishal Bishtinbishtv773.hashnode.dev00URL Parameters vs Query Strings in Express.js1d ago · 2 min read · So whenever you build backend APIs, an important One important point: data is sent to the client server via the URL. Here are two common ways to send data through the URL: URL Parameters Query StrinJoin discussion
VBVishal Bishtinbishtv773.hashnode.dev00Sessions vs JWT vs Cookies: 2d ago · 3 min read · Okay, so whenever you notice that you log into a website like Amazon or Instagram, you might wonder, "How does the server remember me?" The answer is: session cookies JWT, which is JSON Web Tokens Join discussion
VBVishal Bishtinwishaal.hashnode.dev00The Node.js Event Loop Explained4d ago · 3 min read · What the event loop is : Before understanding the event loop, note that Node.js runs on a single thread. Still, it’s fast.? This is all because of the event loop. What is our event loop? It’s a smart Join discussion
VBVishal Bishtinwishaal.hashnode.dev00How Node.js Handles Multiple Requests with a Single Thread /Apr 24 · 3 min read · Imagine 100 users hitting your server at the same time. In a traditional system, the server may struggle, but Node.js handles it smoothly. But how? If Node.js is single-threaded, how can it manage mulJoin discussion
VBVishal Bishtinwishaal.hashnode.dev00Async Code in Node.js: Callbacks and PromisesApr 24 · 3 min read · Why async code exists in Node.js : Before understanding asynchronous programming, note that Node.js is single-threaded, meaning only one piece of code executes at a time. If a heavy task, such as readJoin discussion