0.1.0 • Published 4 months ago

swrize v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

swrize

SWR for functions

import swrize from "swrize";

const myFunc = swrize(
  async (foo) => {
    const res = await fetch(`https://example.com/${foo}`);
    return res.json();
  },
  {
    staleWhileRevalidate: 3600 * 24 * 7,
    maxAge: 3600,
  }
);
0.1.0

4 months ago

0.0.2

4 months ago

0.0.1

5 months ago