├── .github └── workflows │ └── main.yml └── README.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: lint 2 | 3 | on: 4 | push: 5 | branches: [master] 6 | pull_request: 7 | branches: [master] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | container: 13 | image: ruby:2.7-buster 14 | 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v2 18 | 19 | - name: Install awesome_bot 20 | run: gem install awesome_bot 21 | 22 | - name: Run awesome_bot 23 | run: awesome_bot README.md 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome React Query [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) ![awesome-react-query](https://github.com/Buuntu/awesome-react-query/workflows/lint/badge.svg) 2 | 3 | - [React Query](https://github.com/tannerlinsley/react-query) 4 | - [Dev Tools](https://github.com/tannerlinsley/react-query-devtools) 5 | - [Documentation](https://react-query.tanstack.com/) 6 | - [Discussions](https://github.com/tannerlinsley/react-query/discussions) 7 | - [React Query Essentials Source Code](https://github.com/tannerlinsley/react-query-essentials) 8 | 9 | ## Applications 10 | 11 | - [Bookshelf App](https://github.com/kentcdodds/bookshelf) 12 | - [Blog Example](https://github.com/tannerlinsley/react-query-blog-refactor-example) 13 | - [COVID Self Reporting Tool](https://github.com/Covid-Self-report-Tool/cov-self-report-frontend) 14 | - [React State Demo](https://github.com/coryhouse/react-state-demo) 15 | - [Create React App Example](https://github.com/hyanmandian/cra-template-hyan) 16 | - [Official Library Examples](https://github.com/tannerlinsley/react-query/tree/master/examples) 17 | - [Hedgehog Lab: A Scientific Computation Tool](https://github.com/lidangzzz/hedgehog-lab) 18 | - [Yet Another Clash Dasbhoard](https://github.com/haishanh/yacd) 19 | - [Synthetix Exchange](https://github.com/Synthetixio/synthetix-exchange) 20 | - [Hacker Tab Extension](https://github.com/huchenme/hacker-tab-extension) 21 | - [Hour Power](https://github.com/brentvatne/hour-power) 22 | - [Rainbow: Ethereum Wallet](https://github.com/rainbow-me/rainbow) 23 | 24 | ## Packages 25 | 26 | - [react-query-navigation-native](https://github.com/cherniavskii/react-query-navigation-native) 27 | - [react-query-native-devtools](https://github.com/bgaleotti/react-query-native-devtools) 28 | - [react-query-auth](https://github.com/alan2207/react-query-auth) 29 | ## Testing 30 | 31 | - [Cypress Example](https://github.com/bahmutov/react-query-example) 32 | 33 | ## Articles and Blog Posts 34 | 35 | - [Why I Stopped Using Redux](https://dev.to/g_abud/why-i-quit-redux-1knl) 36 | - [Getting Started with React Query](https://dev.to/vincenius/getting-started-with-react-query-easy-server-state-management-in-react-536l) 37 | - [Tkdodo's react-query article series](https://tkdodo.eu/blog/tags/react-query) 38 | 39 | ## Videos 40 | 41 | - [It's Time to Breakup with your Global State](https://www.youtube.com/watch?v=seU46c6Jz7E) 42 | --------------------------------------------------------------------------------