collaboration Drawing app
 
 
 
Go to file
Steve Ruiz ab02b4b488 v0.0.82 2021-09-08 12:13:47 +01:00
.github Fix change to loadDocument 2021-09-08 12:09:03 +01:00
.vscode Replaces isDarkMode with meta, a more flexible option for custom rendering context 2021-08-30 11:44:42 +01:00
packages v0.0.82 2021-09-08 12:13:47 +01:00
.eslintrc.js Fix build errors 2021-08-11 22:11:23 +01:00
.gitignore Replace 2021-08-10 17:12:55 +01:00
.npmignore Replace 2021-08-10 17:12:55 +01:00
LICENSE Replace 2021-08-10 17:12:55 +01:00
README.md test(core): fix test names 2021-09-01 21:22:13 +02:00
lerna.json v0.0.82 2021-09-08 12:13:47 +01:00
package.json 0.0.79 2021-09-05 15:23:37 +01:00
setupTests.ts Move state to rko 2021-08-29 14:33:43 +01:00
tsconfig.base.json Remove id property 2021-09-08 11:46:28 +01:00
tsconfig.json Adds references 2021-09-06 12:44:14 +01:00
tsconfig.tsbuildinfo tweak arrow sessions 2021-09-02 16:23:07 +01:00
yarn.lock Remove explicit package from www 2021-09-06 14:12:19 +01:00

README.md

tldraw

A tiny little drawing app.

Visit tldraw.com.

Author

Support

To support this project (and gain access to the project while it is in development) you can sponsor the author on GitHub. Thanks!

Documentation

In progress! Check the README files in packages/core and packages/tldraw.

Examples

Local Development

The tldraw packages

To work on the packages (@tldraw/core or @tldraw/tldraw), you'll want to run the (extremely fast) dev server.

  1. Download or clone the repository.

    git clone https://github.com/tldraw/tldraw.git
    
  2. Install dependencies.

    yarn
    
  3. Start the development server.

    yarn start
    
  4. Open the local site at https://localhost:5000.

The tldraw app

To work on the app itself (that embeds @tldraw/tldraw), run the Next.js app. This won't directly respond to changes to packages, so for concurrent package dev work be sure to use the package dev server instead. (This is being worked on.)

  1. Start the development server.

    yarn start:www
    
  2. Open the local site at https://localhost:3000.