collaboration Drawing app
 
 
 
Go to file
Steve Ruiz a906a3bd95 v0.0.129 2021-10-27 16:21:20 +01:00
.github
.vscode big refactor 2021-09-13 16:38:42 +01:00
.yarn/releases
packages v0.0.129 2021-10-27 16:21:20 +01:00
.eslintrc.js
.gitignore
.npmignore
.yarnrc
CHANGELOG.md Update CHANGELOG.md 2021-10-22 15:07:47 +01:00
LICENSE [fix] indicator shapes (#121) 2021-09-24 10:47:25 +01:00
README.md
lerna.json v0.0.129 2021-10-27 16:21:20 +01:00
package.json moves svg utils into its own package 2021-10-22 20:03:22 +01:00
setupTests.ts
tsconfig.base.json Adds tsconfig-replace-paths 2021-09-14 08:51:24 +01:00
tsconfig.json big refactor 2021-09-13 16:38:42 +01:00
yarn.lock [refactor] ShapeUtils (#206) 2021-10-27 16:15:01 +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.