SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00What is Middleware in Express and How It Works4h ago · 4 min read · Introduction When a user sends a request to a server, that request does not go directly to the final response. In frameworks like Express.js, the request passes through a series of steps before reachiJoin discussion
AKAnil Kambarinanilkambarweb.hashnode.dev00REST API Design Made Simple with Express.js2h ago · 9 min read · If you’ve ever wondered how your phone gets the latest posts from Instagram or how a website saves your profile information, you’re looking at the work of an API. Specifically, most modern apps use soJoin discussion
Aanshinaksh27.hashnode.dev00Async Code in NodeJS : Callbacks and Promises4m ago · 3 min read · This blog contains the single threaded model of the NodeJS, what callbacks are, why we don't use them and what are promises, benefits of using promises, etc. As we all know, NodeJS is built on a singlJoin discussion
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00Destructuring in JavaScript8m ago · 4 min read · Introduction When working with arrays and objects in JavaScript, you often need to extract values and assign them to variables. Traditionally, this required multiple lines of code, which could become Join discussion
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00Error Handling in JavaScript: Try, Catch, Finally48m ago · 4 min read · Introduction While writing JavaScript programs, errors are unavoidable. These errors can occur due to incorrect input, unexpected conditions, or bugs in the code. If not handled properly, they can craJoin discussion
AKAnil Kambarinanilkambarweb.hashnode.dev00The Node.js Event Loop: How JavaScript Does a Million Things at Once58m ago · 7 min read · If you’ve ever tried to cook a multi-course dinner alone, you know the struggle. You can’t chop onions and boil pasta at the exact same second. You have to switch back and forth. Node.js faces a similJoin discussion
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00What is Node.js? JavaScript on the Server Explained4h ago · 4 min read · Introduction For many years, JavaScript was mainly used inside web browsers to make pages interactive. It handled things like button clicks, form validation, and dynamic updates on the screen. It coulJoin discussion
JDJags Dubeyindubeyjags.hashnode.dev00JavaScript : Function Declaration vs Function Expression1h ago · 2 min read · Lets understand function as var can store the value same as function store the single or multiple line of code which we can use where we need. Instead of writing the same code again and again, you wrJoin discussion
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00Blocking vs Non-Blocking Code in Node.js1h ago · 4 min read · Introduction When building backend applications with Node.js, one of the most important concepts to understand is blocking vs non-blocking code. This directly affects how fast your server responds to Join discussion
MKMohit Kumarinmohitcodes-write.hashnode.dev00Async Code in Node.js: Callbacks and Promises5h ago · 4 min read · Understanding Async Code in Node.js: From Callbacks to Promises When you first start working with Node.js, async code can feel… weird. Why isn’t it running line-by-line like normal code? Why do thingsJoin discussion