Continuous file saving in React
Here's a short tutorial on how to implement saving custom content to the file system of an end user. This not only gives us the opportunity to save the file once, but by working in a...
Read moreHere's a short tutorial on how to implement saving custom content to the file system of an end user. This not only gives us the opportunity to save the file once, but by working in a...
Read moreIn React, the way of communicating between parent and child components is usually done in 2 ways; the parent sends `props` to the child and the child can send data back to the parent...
Read moreA simple React+Typescript+Redux starter project including a neat folder structure, fetching data and global state management...
Read moreI recently stumbled upon an issue I had to fix. I had created a React hook with a `useEffect` function in which I executed a fetch call. The data was then put into a Redux storage. All...
Read moreThere are several different ways of React component testing, but I chose for this particular combination because `create-react-app` uses Jest as their default test...
Read moreCaching API requests is something that's often forgotten, even though it can possibly improve performance and reduce use of resources. The implementation can be really simple, as I...
Read more