5f0994192c
This PR fixes a bug in the docs! ### Change Type - [x] `documentation` — Changes to the documentation only[^2]
33 lines
803 B
Text
33 lines
803 B
Text
---
|
|
title: Installation
|
|
status: published
|
|
author: steveruizok
|
|
date: 3/22/2023
|
|
order: 1
|
|
---
|
|
|
|
At the moment the `@tldraw/tldraw` package is in beta. We also ship a canary version which is always up to date with the main branch of tldraw [repository](https://github.com/tldraw/tldraw).
|
|
|
|
## Beta
|
|
|
|
First, install the `@tldraw/tldraw` package using `@beta` for the latest beta release.
|
|
|
|
```bash
|
|
yarn add @tldraw/tldraw@beta
|
|
```
|
|
|
|
```bash
|
|
npm install @tldraw/tldraw@beta
|
|
```
|
|
|
|
## Canary
|
|
|
|
To get the very latest version, use the [latest canary release](https://www.npmjs.com/package/@tldraw/tldraw?activeTab=versions). Docs for the very latest version are also available at [canary.tldraw.dev](https://canary.tldraw.dev).
|
|
|
|
```bash
|
|
yarn add @tldraw/tldraw@canary
|
|
```
|
|
|
|
```bash
|
|
npm install @tldraw/tldraw@canary
|
|
```
|