NPNikhil Prasharinnikhilprashar.hashnode.dev00REST API Design Made Simple with Express.jsMay 10 · 5 min read · What REST API means . REST API Stands for Representational State Transfer API. It helps create better communication between the client and the server over the HTTP protocol. Basically, it works with JJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00The Node.js Event Loop Explained .May 10 · 5 min read · What the event loop is . The event loop is what makes Node.js so fast and delivers results quickly. So, let's understand what an event loop is. The event loop is a mechanism that provides a feature fJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00Handling File Upload in Express with Multer .May 10 · 4 min read · Why file uploads need middleware . Before understanding why file uploads need middleware, first we should understand the problem statement behind it. So the problem statement is this, assume a user wJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00How Node.js Handle Multiple Requests with a Single Threads.May 10 · 4 min read · Single-threaded nature of Node.js . Before understanding the single-threaded nature of Node.js, first understand what a thread means. A thread is basically a path of execution where code runs and taskJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00Storing Uploaded File and Serving Them in ExpresMay 10 · 5 min read · Where uploaded files are stores . So there are two ways to store files. But before that, let us first understand why we need to store files. Assume you are building an application. Obviously, there wJoin discussion