MGMrinal Gintech-log.hashnode.dev·May 10 · 4 min readREST API Design Made SimpleWhat REST API Means REST API is abbreviation for: Representational State Transfer Application Programming Interface REST APIs give us a structured way to represent and access server data. They defin00
MGMrinal Gintech-log.hashnode.dev·May 10 · 3 min readURL Parameters vs Query Strings in Express.jsWhat URL Parameters Are URL parameters are dynamic values placed directly inside the route path. They are mainly used to identify: specific resources unique entities Example: /users/10 Here: 10 00
MGMrinal Gintech-log.hashnode.dev·May 10 · 2 min readSetting Up Your First Node.js Application Step-by-StepInstalling Node.js Node.js must first be installed before running JavaScript outside the browser. Installing Node.js also installs: Node runtime npm package manager After installation, JavaScript 00
MGMrinal Gintech-log.hashnode.dev·May 10 · 3 min readHow Node.js Handles Multiple Requests with a Single ThreadSingle-Threaded Nature of Node.js Node.js mainly runs JavaScript on a single main thread. This means: one call stack one main execution flow Unlike many traditional backend systems, Node.js does n00
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