Skip to content

Overview

We're going to build TanStack Query and useQuery from scratch.

Goal

  • Learn how TanStack Query works.
  • Learn how to integrate TanStack Query into React.

Getting Started

bash
## 1. Clone the repository
git clone https://github.com/mugglim/build-your-own-tanstack-query

## 2. Install dependencies
npm install

## 3. Run the development server (It runs on https://localhost:3000 by default.)
npm run dev

Result

The completed implementation is available on GitHub.

Reference