adetutu.hashnode.devRunning a JSON Server in the Terminal using Process Manager (PM2): A Step-by-Step GuideIntroduction Process manager (PM2) is a tool that is used to manage and monitor processes that are running on a system. It allows developers to start, stop, monitor, and automatically restart processes when needed. It is mostly used when working with...Jul 25, 2023·4 min read
adetutu.hashnode.devHow to Design a CSS Card Flip Animation: Creating Flipping Cards on HoverOUTLINE Introduction Prerequisite Step-by-step guide on how to design a CSS card flip animation on hover Conclusion Introduction CSS animations are used for adding interactivity and visual effects to elements on a web page. It provides a way to...Jun 29, 2023·7 min read
adetutu.hashnode.devHow to Remove Duplicate Elements From an Array in JavaScriptIn this article, we will explore how to remove duplicate elements from an array in JavaScript using different methods. Here are the commonly used methods: Using the reduce() method Using the filter() method Using the Set object Let’s get started...Jun 17, 2023·4 min read
adetutu.hashnode.devHow to Create a Custom useFetch Hook in ReactIntroduction Custom hooks are reusable functions that contain logic and can be used in functional components. A useFetch hook is a reusable function in React that abstracts the process of fetching data from an API, provides an efficient way to manage...Jun 10, 2023·4 min read
adetutu.hashnode.devHow to flatten an array of arrays in JavaScriptIn this article, we will explore how to flatten an array of arrays in JavaScript using different approaches. Here are the common approaches: Using the reduce() method Using the flat() method Using the flatmap() method Using the concat() method an...Jun 1, 2023·5 min read