1.0.1 • Published 11 months ago

gatsby-plugin-cache-api v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Version Downloads Total License CodeFactor

gatsby-plugin-cache-api

This plugin is used to cache any API.

Install

$ npm i gatsby-plugin-cache-api

or

$ yarn add gatsby-plugin-cache-api

How to use

import the function cacheApi in your gatsby-node.js.

const cacheApi = require('gatsby-plugin-cache-api');

exports.onPreInit = async () => {
  const api = await fetch('https://dog.ceo/api/breeds/list/all');
  const json = await api.json();

  const defineCache = {
    pathOutput: 'js/json',
    nameOutPath: 'breeds.json',
    file: json.message,
  };
  cacheApi(defineCache);
};

In your component do a fetch directly in your application

const MyComponent = () => {
  const [breeds, setBreeds] = useState([]);

  useEffect(()=> {
    const api = await fetch('./js/json/breeds.json'); //- cache
    const json = await api.json();
    const parseBreeds = Object.keys(json.message)
    setBreeds(parseBreeds);

  }, [])

  return <div> {breeds.map((breed)=> <p key={breeds}>{breeds}</p>)} </div>;
};

export default MyComponent;

On build Time

In the terminal you will see a success log with the path and name of the generated file

Shell Example

License

The code is available under the MIT License.

1.0.1

11 months ago

1.0.0

11 months ago