collaboration Drawing app
 
 
 
Go to file
Steve Ruiz edc71a4d98 v0.0.51 2021-08-30 14:29:20 +01:00
.github
.vscode Replaces isDarkMode with meta, a more flexible option for custom rendering context 2021-08-30 11:44:42 +01:00
packages v0.0.51 2021-08-30 14:29:20 +01:00
.eslintrc.js
.gitignore
.npmignore
LICENSE
README.md Update README.md 2021-08-13 15:46:55 +01:00
lerna.json v0.0.51 2021-08-30 14:29:20 +01:00
package.json Replaces isDarkMode with meta, a more flexible option for custom rendering context 2021-08-30 11:44:42 +01:00
setupTests.ts Move state to rko 2021-08-29 14:33:43 +01:00
tsconfig.base.json Replaces isDarkMode with meta, a more flexible option for custom rendering context 2021-08-30 11:44:42 +01:00
tsconfig.json cleans up tsconfigs 2021-08-13 13:48:08 +01:00
tsconfig.tsbuildinfo Replaces isDarkMode with meta, a more flexible option for custom rendering context 2021-08-30 11:44:42 +01:00
yarn.lock Adds indicator for dots, rename and delete dialogs for pages, dark mode support for ui 2021-08-30 14:04:12 +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.

Local Development

The tldraw packages

To work on the packages (@tldraw/core or @tldraw/tldraw), you'll want to run the (extremely fast) package 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.