We can use the following approach in ReactJS to cache is already existing or not. We can check cache is already existing or not from the browser and use it in our application whenever needed. Caching is a technique that helps us to stores a copy of a given resource into our browser and serves it back when requested.
Approach: Follow these simple steps in order to check cache is already existing or not in ReactJS. We have created our isCacheAlreadyExisting() function which takes the cache name and returns true/false based on whether the given cacheName is already existing or not. When we click on the button, the function is triggered, and it checks cache is already existing or not. In the following example, we are trying to check whether CacheThree and CacheEight are already present in the browser or not, our browser has five caches named CacheOne, CacheTwo, CacheThree, CacheFour, and CacheFive as shown below:
Creating React Application:
Step 1: Create a React application using the following command:
npx create-react-app foldername
Step 2: After creating your project folder i.e. foldername, move to it using the following command:
cd foldername
Project Structure: It will look like the following.
App.js: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.