See https://github.com/oslabs-beta/react-query-rewind/blob/main/README.md for a complete overview.
This document details setting up the package and examples for a testing environment.
Install the pacakage with:
npm i -D react-query-rewind
Import the ReactQueryRewind component and place it as close as possible to the root of your app.
Download the chrome extension from insert url here in order to time travel state in a developer toosl panel within your chrome browser.
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
const queryClient = new QueryClient();
ReactDOM.createRoot(document.getElementById('root')!).render(
<QueryClientProvider client={queryClient}>
<ReactQueryRewind/>
<App />
<ReactQueryDevtools />
</QueryClientProvider>
);
From the package directory: Run with "1" or "2" depending on which example you'd like to set up
npm run install-all
- Installs all dependencies for the package and both example apps
npm run link-dependencies-1
ornpm run link-dependencies-2
- Installs all peer dependencies in our package to ensure there are no duplicates
- Can see all packages currently linked with
npm ls -g --depth=0 --link=tr
npm run watch
- Starts rollup in watch mode and creates dist folder
npm run link-package-1
ornpm run link-package-2
- Links React Query Rewind
npm run example-1
ornpm run example-2
- Starts the example server with webpack. Note: this is a hot reload, but it does not always pick up changes to the npm package
npm login
to login to the npm site. Follow the instructions to publish your npm packagenpm publish
Contributions are always welcome. Please create a fork from https://github.com/oslabs-beta/react-query-rewind.
- Rollup currently does not build on older macs or on Linux (we have not confirmed the issue on Windows yet)
- Some developers on older macs need to install @rollup/rollup-darwin-x64 to get the build working
- Github actions uses linux and as a result, our test.yml script installs @rollup/rollup-darwin-x64 to ensure the build works properly
- Future development should ensure that builds work correclty regardless of the developer's machine and remove the installation of @rollup/rollup-darwin-x64 from the tests.yml file