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
You can install TanStack DB with any [NPM](https://npmjs.com) package manager.
7
+
8
+
Only install one of the following packages depending on your use case:
9
+
10
+
## React
11
+
12
+
```sh
13
+
npm install @tanstack/react-db
14
+
```
15
+
16
+
TanStack DB is compatible with React v16.8+
17
+
18
+
## Solid
19
+
20
+
```sh
21
+
npm install @tanstack/solid-db
22
+
```
23
+
24
+
COMING SOON
25
+
26
+
## Svelte
27
+
28
+
```sh
29
+
npm install @tanstack/svelte-db
30
+
```
31
+
32
+
COMING SOON
33
+
34
+
## Vue
35
+
36
+
```sh
37
+
npm install @tanstack/vue-db
38
+
```
39
+
40
+
TanStack DB is compatible with Vue v3.3.0+
41
+
42
+
## Vanilla JS
43
+
44
+
```sh
45
+
npm install @tanstack/db
46
+
```
47
+
48
+
Install the the core `@tanstack/db` package to use with any framework or without a framework. Each framework package up above will also re-export everything from this core package.
0 commit comments