4.0.0 • Published 2 years ago

react-query-native-devtools v4.0.0

Weekly downloads
1,134
License
MIT
Repository
-
Last release
2 years ago

React Query Native Devtools

Flipper client plug-in for React Query

Installation

$ npm i --save-dev react-query-native-devtools react-native-flipper
# or
$ yarn add --dev react-query-native-devtools react-native-flipper

Usage

Register the plugin in your application:

import * as React from 'react';
import { QueryClient, QueryClientProvider } from 'react-query';

const queryClient = new QueryClient();

if (__DEV__) {
  import('react-query-native-devtools').then(({ addPlugin }) => {
    addPlugin({ queryClient });
  });
}

function App() {
  return (
    <QueryClientProvider client={queryClient}>
      <MyReactQueryApp />
    </QueryClientProvider>
  );
}
3.0.2

2 years ago

4.0.0

2 years ago

3.0.1

3 years ago

3.0.0

3 years ago

3.0.0-canary.1

3 years ago

3.0.0-canary.0

3 years ago

2.0.0

3 years ago

0.3.3-canary.0

3 years ago

0.3.2

4 years ago

0.3.2-canary.0

4 years ago

0.3.0

4 years ago

0.3.1

4 years ago

0.2.0

4 years ago

0.2.0-canary.0

4 years ago

0.1.5

4 years ago

0.1.3-canary.0

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago