--- id: installation title: Installation --- You can install React Query via [NPM](https://npmjs.com/), or a good ol' ` ``` > You can find instructions on how to use React without JSX [here](https://react.dev/reference/react/createElement#creating-an-element-without-jsx). ### Requirements React Query is optimized for modern browsers. It is compatible with the following browsers config ``` Chrome >= 91 Firefox >= 90 Edge >= 91 Safari >= 15 iOS >= 15 Opera >= 77 ``` > Depending on your environment, you might need to add polyfills. If you want to support older browsers, you need to transpile the library from `node_modules` yourselves. ### Recommendations It is recommended to also use our [ESLint Plugin Query](../../../eslint/eslint-plugin-query.md) to help you catch bugs and inconsistencies while you code. You can install it via: ```bash npm i -D @tanstack/eslint-plugin-query ``` or ```bash pnpm add -D @tanstack/eslint-plugin-query ``` or ```bash yarn add -D @tanstack/eslint-plugin-query ``` or ```bash bun add -D @tanstack/eslint-plugin-query ```