0.1.0 • Published 2 years ago

swrize v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years 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

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago