swr
SWR is a React Hooks library for remote data fetching.
The name “SWR” is derived from stale-while-revalidate, a HTTP cache invalidation strategy popularized by RFC 5861. SWR first returns the data from cache (stale), then sends the fetch request (revalidate), and finally comes with the up-to-date data again.
It features:
- Transport and protocol agnostic data fetching
- Fast page navigation
- Revalidation on focus
- Interval polling
- Local mutation
- Pagination
- TypeScript ready
- Suspense mode
- Minimal API
With SWR, components will get a stream of data updates constantly and automatically, Thus, the UI will be always fast and reactive.
Quick Start
In this example, the React Hook useSWR
accepts a key
and a fetch
function.
key
is a unique identifier of the data, normally a URL of the API. And the fetch
accepts
key
as its parameter and returns the data asynchronously.
useSWR
also returns 2 values: data
and error
. When the request (fetch) is not yet finished,
data
will be undefined
. And when we get a response, it sets data
and error
based on the result
of fetch
and rerenders the component.
Note that fetch
can be any asynchronous function, so you can use your favourite data-fetching
library to handle that part.
API
useSWR
SWRConfig
A context to provide global configurations (swrOptions
) for SWR.
mutate
With mutate
, you can update your local data programmatically, while
revalidating and finally replace it.
trigger
You can broadcast a revalidation message to all SWR data inside any component by calling
trigger(key)
.
Suspense Mode
You can enable the suspense
option to use useSWR
with React Suspense.