Securing Passwords with Bcrypt in Node.jsPassword security is a critical aspect of user authentication. Storing plain-text passwords is a huge security risk, which is why hashing…Mar 23Mar 23
Express Json Middlewareexpress.json() is a built-in middleware in Express.js that parses incoming JSON requests and makes the data available in req.body. It’s a…Mar 22Mar 22
JSON Stringify PolyfillJSON.stringify() is a method that converts a JavaScript object or value to a JSON string. It is often used when sending data from a client…Feb 121Feb 121
Object assign PolyfillTo copy object , we mainly use 2 methods spread and object assign method.Feb 7Feb 7
Throttling in JS with leading and trailingThrottling is a technique that limits how often a function can be called in a given period of time. It is useful for improving the…Feb 4Feb 4
CORSit is a security feature implemented in web browsers to prevent web pages from making request to different origin(domain, subdomain, port…Jan 6Jan 6
Fetch in JSJavaScript can send network requests to the server and load new information whenever it’s needed.Jan 5Jan 5
Debouncing in JSDebouncing is a programming technique that helps to improve the performance of web applications by limiting the frequency of function callsDec 15, 2024Dec 15, 2024