You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React Native Query Devtool is a monorepo containing a React Native component and a standalone app to visualize query data in a similar way to react-query-devtools for the web.
- Provides a component for integrating query data in React Native applications running react-query v3, and @tanstack/react-query v4 and v5.
10
-
- Includes a standalone app to visualize and help debug query data.
11
-
12
-
## Standalone App
13
-
14
-
The standalone app allows you to visualize and debug query data from your React Native application using the `@jsmdeleon/react-native-query-devtool` package.
12
+
- (Optional) Includes a standalone app to visualize and help debug query data.
15
13
16
14
## Installation
17
15
18
-
You can download the standalone app from the following link. Currently, it's available only for **macOS M1** and **Windows x64**:
**Linux users:** You need to build the app from source as it's currently only available for **macOS M1** and **Windows x64**. Ensure to set up your environment accordingly before building the app.
16
+
To use the devtool component in your React Native project, install the package using `npm` or `yarn`, You will also need to install `react-native-gesture-handlers` if you haven't already.
23
17
24
18
```bash
25
-
# Go to app folder
26
-
cd react-native-query-devtool-app
27
-
28
-
# Install dependencies
29
-
yarn
30
-
31
-
# Build
32
-
yarn build-server
33
-
```
34
-
35
-
After running the build command, you'll find the freshly built app in a new folder named **'out'**.
36
-
37
-
## React Native Component
38
-
39
-
To use the devtool component in your React Native project, install the package:
If you want more room to debug your query data, you can download the standalone app from the following link. Currently, it's available only for **macOS M1** and **Windows x64**. Check [Standalone Repo](https://github.com/jossydeleon/react-native-query-devtool-monorepo/tree/main/packages/react-native-query-devtool-app)
**Note:** The binaries provided are not signed. If you have concerns about security or trust, you can choose to build the app from the source code for your machine.
73
+
74
+
**Linux users:** You need to build the app from source as it's currently only available for **macOS M1** and **Windows x64**. Ensure to set up your environment accordingly before building the app.
75
+
76
+
```bash
77
+
# Go to app folder
78
+
cd packages/react-native-query-devtool-app
79
+
80
+
# Install dependencies
81
+
yarn
82
+
83
+
# Build
84
+
yarn build-server
85
+
```
86
+
87
+
After running the build command, you'll find the freshly built app in a new folder named **'out'**.
88
+
89
+
**Important:** The standalone app uses port `9017` by default. Ensure that this port is available and not blocked by any firewall settings or other applications on your system.
86
90
87
91
## Examples
88
92
89
93
In the example folder, you can find example projects demonstrating the usage of `@jsmdeleon/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
Contributions to improve this project are welcome! If you have any ideas for new features, enhancements, bug fixes, or optimizations, feel free to submit a pull request. You can also report any bugs or issues you encounter by opening a new issue
Standalone app to visualize and help debug query data. You can download it from the following link. Currently, it's available only for **macOS M1** and **Windows x64**. [Download latest App](https://github.com/jossydeleon/react-native-query-devtool-monorepo/releases)
6
+
7
+

8
+
9
+
10
+
**Note:** The binaries provided are not signed. If you have concerns about security or trust, you can choose to build the app from the source code for your machine.
11
+
12
+
**Linux users:** You need to build the app from source as it's currently only available for **macOS M1** and **Windows x64**. Ensure to set up your environment accordingly before building the app.
13
+
14
+
```bash
15
+
# Go to app folder
16
+
cd react-native-query-devtool-app
17
+
18
+
# Install dependencies
19
+
yarn
20
+
21
+
# Build
22
+
yarn build-server
23
+
```
24
+
25
+
After running the build command, you'll find the freshly built app in a new folder named **'out'**.
26
+
27
+
**Important:** The standalone app uses port `9017` by default. Ensure that this port is available and not blocked by any firewall settings or other applications on your system.
28
+
29
+
## Examples
30
+
31
+
In the example folder, you can find example projects demonstrating the usage of `@jsmdeleon/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
Contributions to improve this project are welcome! If you have any ideas for new features, enhancements, bug fixes, or optimizations, feel free to submit a pull request. You can also report any bugs or issues you encounter by opening a new issue
"description": "The standalone app allows you to visualize and debug query data from your React Native application using the @jsmdeleon/react-native-query-devtool package.",
0 commit comments