1.0.2 • Published 1 year ago
svelte-rune-swr v1.0.2
svelte-rune-swr
porting of vue swr https://github.com/Kong/swrv use svelte 5 with runes
Usage
const { swr } = useSWR('https://api.sampleapis.com/coffee/hot', async (url) => {
return await fetch(url).then((res) => res.json());
});
const { data, isValidating, error } = $derived(swr);