In this blog, we will study the factors that get affected by any system design decision. We will understand it while we design a blogging platform. We...
Note: Since this is my first blog related to system design, initially we’ll keep things simple and not put a lot of focus on scaling. Instead of...
In this blog, we will build our version of Youtube, implementing some important features like video list home page, search videos with suggestions,...
In this blog, we will style our app using TailwindCSS and then deploy it. Polishing the UI Earlier our app used to look something like this: After...
In this blog, we will learn how to test our app using Jest and React Testing Library. Why do we need test cases? Generally, when we build a large...
In this blog, we'll learn state management using Redux. useContext vs Redux You can use context, if you are building a small application. But, when...