24 lines
507 B
Markdown
24 lines
507 B
Markdown
This repository shows how you might use [tldraw](https://github.com/tldraw/tldraw) together with the [yjs](https://yjs.dev) library. It also makes a good example for how to use tldraw with other backend services!
|
|
|
|
## Bootsrapping Locally
|
|
|
|
To run the local development server, first clone this repo.
|
|
|
|
Install dependencies:
|
|
|
|
```bash
|
|
npm i
|
|
```
|
|
|
|
Start the local development server:
|
|
|
|
For macOS/Linux:
|
|
```bash
|
|
npm run dev
|
|
```
|
|
For Windows:
|
|
```bash
|
|
npm run dev:win
|
|
```
|
|
|
|
Open the example project at `localhost:5173`. |