VSVarjinth subramaniyaninmycodingjourneyy.hashnode.dev·Feb 11, 2024 · 3 min readCSRF in Web applicationCSRF stands for Cross Site Request Forgery. It means hackers sends request to a server by using hacked person's AUTH details. When an user logged into a website, browser will store the authentication related details such as authentication token in se...00
VSVarjinth subramaniyaninmycodingjourneyy.hashnode.dev·Jan 29, 2024 · 2 min readMiddleware in web developmentMiddleware is a software that acts as a bridge between two different applications or components. In web application it sits between client and back end server. In web frameworks like Express.js or Django, middleware functions intercept incoming HTTP ...00
VSVarjinth subramaniyaninmycodingjourneyy.hashnode.dev·Dec 3, 2023 · 2 min readCross-Origin Resource Sharing (CORS)When I initially worked on a Django-React project, I encountered an error while making API calls from the React server to the Django server. I have spent so much of time to sort that error. So I have decided to share my understanding of CORS. CORS is...00
VSVarjinth subramaniyaninmycodingjourneyy.hashnode.dev·Aug 27, 2023 · 1 min readPseudo Classical Pattern In JSThe pseudo-classical pattern is known as the Constructor Prototype Pattern. It is a design pattern that emulates the inheritance properties of class-based OOPs concept. In this pattern to create an object which inherits from a parent object, a constr...00
VSVarjinth subramaniyaninmycodingjourneyy.hashnode.dev·Aug 23, 2023 · 1 min readOLOO in JavaScriptOLOO means Object Linked to Other Object. We are linking one object of Javascript to another object to access the properties defined in the parent object. By using Object linking, we can easily achieve the inheritance of Class-based object orientatio...00