%PDF- %PDF-
Direktori : /var/www/html/node_modules/swr/ |
Current File : //var/www/html/node_modules/swr/README.md |
[![SWR](https://assets.vercel.com/image/upload/v1572289618/swr/banner.png)](https://swr.vercel.app) <p align="center"> <a aria-label="Vercel logo" href="https://vercel.com"> <img src="https://badgen.net/badge/icon/Made%20by%20Vercel?icon=zeit&label&color=black&labelColor=black"> </a> <br/> <a aria-label="NPM version" href="https://www.npmjs.com/package/swr"> <img alt="" src="https://badgen.net/npm/v/swr"> </a> <a aria-label="Package size" href="https://bundlephobia.com/result?p=swr"> <img alt="" src="https://badgen.net/bundlephobia/minzip/swr"> </a> <a aria-label="License" href="https://github.com/vercel/swr/blob/main/LICENSE"> <img alt="" src="https://badgen.net/npm/license/swr"> </a> </p> ## Introduction SWR is a React Hooks library for data fetching. The name “**SWR**” is derived from `stale-while-revalidate`, a cache invalidation strategy popularized by [HTTP RFC 5861](https://tools.ietf.org/html/rfc5861). **SWR** first returns the data from cache (stale), then sends the request (revalidate), and finally comes with the up-to-date data again. With just one hook, you can significantly simplify the data fetching logic in your project. And it also covered in all aspects of speed, correctness, and stability to help you build better experiences: - **Fast**, **lightweight** and **reusable** data fetching - Transport and protocol agnostic - Built-in **cache** and request deduplication - **Real-time** experience - Revalidation on focus - Revalidation on network recovery - Polling - Pagination and scroll position recovery - SSR and SSG - Local mutation (Optimistic UI) - Built-in smart error retry - TypeScript - React Suspense - React Native ...and a lot more. With SWR, components will get **a stream of data updates constantly and automatically**. Thus, the UI will be always **fast** and **reactive**. --- **View full documentation and examples on [swr.vercel.app](https://swr.vercel.app).** <br/> ## Quick Start ```js import useSWR from 'swr' function Profile() { const { data, error } = useSWR('/api/user', fetcher) if (error) return <div>failed to load</div> if (!data) return <div>loading...</div> return <div>hello {data.name}!</div> } ``` In this example, the React Hook `useSWR` accepts a `key` and a `fetcher` function. The `key` is a unique identifier of the request, normally the URL of the API. And the `fetcher` accepts `key` as its parameter and returns the data asynchronously. `useSWR` also returns 2 values: `data` and `error`. When the request (fetcher) is not yet finished, `data` will be `undefined`. And when we get a response, it sets `data` and `error` based on the result of `fetcher` and rerenders the component. Note that `fetcher` can be any asynchronous function, you can use your favourite data-fetching library to handle that part. --- **View full documentation and examples on [swr.vercel.app](https://swr.vercel.app).** <br/> ## Authors This library is created by the team behind [Next.js](https://nextjs.org), with contributions from our community: - Shu Ding ([@shuding\_](https://twitter.com/shuding_)) – [Vercel](https://vercel.com) - Guillermo Rauch ([@rauchg](https://twitter.com/rauchg)) – [Vercel](https://vercel.com) - Joe Haddad ([@timer150](https://twitter.com/timer150)) - [Vercel](https://vercel.com) - Paco Coursey ([@pacocoursey](https://twitter.com/pacocoursey)) - [Vercel](https://vercel.com) [Contributors](https://github.com/vercel/swr/graphs/contributors) Thanks to Ryan Chen for providing the awesome `swr` npm package name! <br/> ## License The MIT License.