Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Steve Ruiz f2ed16ff7e Fix build 4 роки тому
.github Update main.yml 4 роки тому
.vscode Replaces isDarkMode with meta, a more flexible option for custom rendering context 4 роки тому
packages Fix build 4 роки тому
.eslintrc.js Fix build errors 4 роки тому
.gitignore Replace 4 роки тому
.npmignore Replace 4 роки тому
LICENSE Replace 4 роки тому
README.md Update README.md 4 роки тому
lerna.json v0.0.51 4 роки тому
package.json cleans up package.json, scripts 4 роки тому
setupTests.ts Move state to rko 4 роки тому
tsconfig.base.json cleans up package.json, scripts 4 роки тому
tsconfig.json cleans up tsconfigs 4 роки тому
tsconfig.tsbuildinfo Replaces isDarkMode with meta, a more flexible option for custom rendering context 4 роки тому
yarn.lock Adds indicator for dots, rename and delete dialogs for pages, dark mode support for ui 4 роки тому

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
  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.