How to create a cryptocurrency search engine with Redux, part 1
In this post we will see how to use redux to obtain data from an API. With this data obtained we are going to fill out a list of cryptocurrencies and add a search engine.
Memoization, useMemo and useCallback
Memoization, optimizing value references and rendering in React with useMemo, useCallback and React.memo
useContext and useReducer. How to replicate redux?
useContext and useReducer How to replicate how Redux works? Consume the context and create a global state to use as a store.
Custom React Hooks with useEffect
Custom React Hooks with useEffect. Cleanup of useEffect, async/await, and important notes when using and creating custom React Hooks
React Hooks, useState and useEffect
What are React Hooks? React Hooks are functions that are executed at a certain point in the life of a functional component. They allow you to use React features, without the need to use classes. For example it allows you to add state to a component...
Functions in Node.js and Javascript. More details
“Functions in node.js and Javascript. More details”, is the second part of the most important features in node.js and Javascript. The topic of functions is very important, and also very extensive. You will learn about the prototype of a function, the behavior of the...