RRavishankarinchai-js.hashnode.dev00JWT Authentication in Node.js Explained Simply1h ago · 7 min read · JWT authentication is a stateless way to handle user logins. Instead of the server remembering every logged-in user in a database, it gives the user a "digital pass" the ( token) that they carry with Join discussion
RRavishankarinchai-js.hashnode.dev00Creating Routes and Handling Requests with Express1h ago · 7 min read · Express.js, routing refers to how an application’s endpoints (URIs) respond to client requests. You define routes using methods of the Express app object that correspond to HTTP methods, such as GET, Join discussion
RRavishankarinchai-js.hashnode.dev00Setting Up Your First Node.js Application Step-by-Step3h ago · 3 min read · Setting Up my First Node.js Application we will follow here step-by-step :- 1. Installing Node.js Installing Node.js is straightforward, with the LTS (Long Term Support) version being the recommended Join discussion
RRavishankarinchai-js.hashnode.dev00How Node.js Handles Multiple Requests with a Single Thread3h ago · 5 min read · Node.js handles multiple requests on a single thread by using an event-driven, non-blocking I/O architecture. Instead of dedicating a new thread to every incoming request—which consumes significant meJoin discussion
RRavishankarinchai-js.hashnode.dev00URL Parameters vs Query Strings in Express.js6h ago · 6 min read · URL Parameters (route params) and Query Strings are used to pass data from the client to the server, but they serve different architectural purposes and are accessed differently within our code. 1. WhJoin discussion