Technical requirements
In this book, you are going to see some code snippets. If you want to try them out, you are going to need the following:
- An integrated development environment (IDE) such as Visual Studio Code.
- A web browser (Google Chrome, Firefox, or Edge).
- Node.js. All the code in this book was written with the current LTS version installed (16.16.0).
- A package manager (npm, Yarn, or pnpm).
- A React project. If you don’t have one, you can create one with Create React App by running the following command in your terminal:
npx create-react-app my-react-app
All the code examples for this chapter can be found on GitHub at https://github.com/PacktPublishing/State-management-with-React-Query/tree/feat/chapter_1.