EAEmmanuel Andeminmannyandem.hashnode.dev·Feb 28, 2024 · 7 min readCreating a Screen Recorder with JavaScriptThere are countless articles on the web on what the best screen recorders are. Have you ever thought about building one? If you have and you know a fair bit of javascript, you've come to the right place. In this article, you will learn how to use the...01L
EAEmmanuel Andeminmannyandem.hashnode.dev·Nov 1, 2023 · 8 min readHow to Secure Routes in a React ApplicationAll react applications have routes. Sometimes, you preferably want some of those routes to only be accessible by a certain class of persons. These routes are known as protected routes and by the end of this article, you will learn how to build one to...00
EAEmmanuel Andeminmannyandem.hashnode.dev·Oct 24, 2023 · 5 min readUnderstanding Recursion in JavascriptRecursion simply refers to a situation where a function calls itself. The function continuously calls itself (usually with different inputs) until a condition, referred to as a base case is met. The Parts of a Recursive Function All recursive functio...00
EAEmmanuel Andeminmannyandem.hashnode.dev·Oct 21, 2023 · 7 min readUnderstanding the Context API in ReactThe context API is an easy and efficient way to manage global state in react. Understanding what context is and how to use it can help in building more robust react apps in an easy and efficient manner. What is the Context API? The context API is a w...01S
EAEmmanuel Andeminmannyandem.hashnode.dev·Oct 2, 2023 · 11 min readFetching Data With A Custom Hook in ReactData is an important part of any application. Data is what turns our fancy UIs into functional applications. But the way we go about getting or sending this data is important to ensure our applications continue to perform at optimum levels. Today, we...00