Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Steve Ruiz ea66362135
[fix] copy bindings (#124)
3 gadus atpakaļ
.github Fix change to loadDocument 3 gadus atpakaļ
.vscode big refactor 3 gadus atpakaļ
.yarn/releases Improves pan and zoom gestures 3 gadus atpakaļ
packages [fix] copy bindings (#124) 3 gadus atpakaļ
.eslintrc.js Fix build errors 3 gadus atpakaļ
.gitignore Replace 3 gadus atpakaļ
.npmignore Replace 3 gadus atpakaļ
.yarnrc Improves pan and zoom gestures 3 gadus atpakaļ
LICENSE [fix] indicator shapes (#121) 3 gadus atpakaļ
README.md test(core): fix test names 3 gadus atpakaļ
lerna.json [fix] copy bindings (#124) 3 gadus atpakaļ
package.json Refactor to Stitches Core (#89) 3 gadus atpakaļ
setupTests.ts Adjusts small example, makes inputs unique to each instance 3 gadus atpakaļ
tsconfig.base.json Adds tsconfig-replace-paths 3 gadus atpakaļ
tsconfig.json big refactor 3 gadus atpakaļ
yarn.lock [fix] indicator shapes (#121) 3 gadus atpakaļ

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
  1. Install dependencies.
   yarn
  1. Start the development server.
   yarn start
  1. 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
  1. Open the local site at https://localhost:3000.