df5fce2a39
This PR restores some changes that were lost during the docs move from bublic to brivate. This is part 1 of two PRs. The second one is https://github.com/tldraw/brivate/pull/2124 ### Change Type - [x] `documentation` — Changes to the documentation only[^2] [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Release Notes - None (Docs internals)
29 lines
No EOL
778 B
Text
29 lines
No EOL
778 B
Text
---
|
|
title: Installation
|
|
status: published
|
|
author: steveruizok
|
|
date: 3/22/2023
|
|
order: 1
|
|
---
|
|
|
|
At the moment the `@tldraw/tldraw` package is in alpha. We also ship a canary version which is always up to date with the main branch of tldraw [repository](https://github.com/tldraw/tldraw).
|
|
|
|
## Alpha
|
|
|
|
First, install the `@tldraw/tldraw` package using `@alpha` for the latest.
|
|
|
|
```bash
|
|
yarn add @tldraw/tldraw@alpha
|
|
# or
|
|
npm install @tldraw/tldraw@alpha
|
|
```
|
|
|
|
## 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
|
|
# or
|
|
npm install @tldraw/tldraw@canary
|
|
``` |