Articles in this series
Middleware Middleware refers to a software design pattern where functions are invoked sequentially in a pipeline to handle requests and responses in...
Techniques Hashing Encryption JSON Web Token Local Storage Hashing Hashing is one directional. Once you get an output you cannot reverse it to...
Components React apps are made using components. Each component has it's own logic. React components are Javascript functions. function App(){ ...
Hooks let you use different React features from your components. You can either use the built-in Hooks or combine them to build your...
Routing Routing in react is carried out by react-router-dom. The react router helps to build single page applications to effortlessly transition...
Database It is a place where data is stored persistently. Databases were are created using protocols that browsers don’t understand. Database supports...