An open API service indexing awesome lists of open source software.

https://github.com/gregrickaby/swr-examples

SWR is a React Hook library for remote data fetching. Here are some simple examples.
https://github.com/gregrickaby/swr-examples

fetch nextjs react react-hooks swr

Last synced: 6 months ago
JSON representation

SWR is a React Hook library for remote data fetching. Here are some simple examples.

Awesome Lists containing this project

README

          

# SWR Examples

[SWR](https://swr.vercel.app/) is an awesome [React Hook](https://reactjs.org/docs/hooks-intro.html) library for remote data fetching, maintained by the team at [Vercel](https://vercel.com). SWR stands for "[stale-while-revalidating](https://tools.ietf.org/html/rfc5861)", which means, SWR will attempt to load cached data (stale) first, and then fetch new data (revalidate) in the background.

👉 [Read the blog post](https://gregrickaby.com/blog/swr-examples)