MGMrinal Gintech-log.hashnode.dev00REST API Design Made Simple6d ago · 4 min read · What 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 definJoin discussion
MGMrinal Gintech-log.hashnode.dev00URL Parameters vs Query Strings in Express.js6d ago · 3 min read · What 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 Join discussion
MGMrinal Gintech-log.hashnode.dev00Setting Up Your First Node.js Application Step-by-Step6d ago · 2 min read · Installing 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 Join discussion
MGMrinal Gintech-log.hashnode.dev00How Node.js Handles Multiple Requests with a Single Thread6d ago · 3 min read · Single-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 nJoin discussion
MGMrinal Gintech-log.hashnode.dev00Creating Routes and Handling Requests with Express6d ago · 3 min read · What 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 WithouJoin discussion