{"id":51398022,"url":"https://github.com/gkurt/tegaki","last_synced_at":"2026-07-05T17:00:41.567Z","repository":{"id":349202122,"uuid":"1194746675","full_name":"gkurt/tegaki","owner":"gkurt","description":"Handwriting animation for the web. Supports any font or text.","archived":false,"fork":false,"pushed_at":"2026-06-30T13:56:43.000Z","size":14445,"stargazers_count":2911,"open_issues_count":4,"forks_count":114,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-06-30T14:09:14.345Z","etag":null,"topics":["animation","calligraphy","cursive","font","handwriting","react","stroke-order","text-animation"],"latest_commit_sha":null,"homepage":"http://gkurt.com/tegaki","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gkurt.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-28T18:58:26.000Z","updated_at":"2026-06-30T13:54:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gkurt/tegaki","commit_stats":null,"previous_names":["kurtgokhan/tegaki","gkurt/tegaki"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/gkurt/tegaki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gkurt%2Ftegaki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gkurt%2Ftegaki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gkurt%2Ftegaki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gkurt%2Ftegaki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gkurt","download_url":"https://codeload.github.com/gkurt/tegaki/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gkurt%2Ftegaki/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35162071,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","calligraphy","cursive","font","handwriting","react","stroke-order","text-animation"],"created_at":"2026-07-04T04:00:32.009Z","updated_at":"2026-07-05T17:00:41.561Z","avatar_url":"https://github.com/gkurt.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Tegaki\n\n**Handwriting animation for any font**\n\nTegaki (手書き) turns any font into animated handwriting.\nNo manual path authoring. No native dependencies. Just pick a font.\n\n[![npm](https://img.shields.io/npm/v/tegaki)](https://www.npmjs.com/package/tegaki)\n[![license](https://img.shields.io/npm/l/tegaki)](https://github.com/gkurt/tegaki/blob/main/LICENSE)\n\n\u003cbr clear=\"both\" /\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"media/hello-world.svg\" alt=\"Tegaki is awesome handwriting animation\" width=\"560\" /\u003e\n\u003c/p\u003e\n\n---\n\n## Quick Start\n\n**1. Install**\n\n```bash\nnpm install tegaki\n```\n\n**2. Use** (React example)\n\n```tsx\nimport { TegakiRenderer } from 'tegaki';\nimport caveat from 'tegaki/fonts/caveat';\n\nfunction App() {\n  return (\n    \u003cTegakiRenderer font={caveat} style={{ fontSize: '48px' }}\u003e\n      Hello World\n    \u003c/TegakiRenderer\u003e\n  );\n}\n```\n\nThat's it. The text draws itself stroke by stroke with natural timing.\n\n## Command Line\n\nDon't want to wire up a component? Generate an animated handwriting SVG straight from your terminal — nothing to install:\n\n```bash\nnpx tegaki \"Tegaki is awesome\"\n```\n\nThis writes a self-drawing, looping `tegaki-is-awesome.svg` — drop it into a README, a slide, or any page. Pick a font, mode, size, or color:\n\n```bash\nnpx tegaki \"Hello World\" --font tangerine --mode once -o hello.svg\nnpx tegaki \"ABC\" --stagger 80% --size 140 --color \"#222\"\n```\n\n`--mode` is `loop` (repeats forever, the default), `once` (draws itself a single time), or `static` (finished artwork). Run `npx tegaki --help` for every option and `--list-fonts` for the bundled fonts. The CLI emits SVG only — for PNG, GIF, or WebM use the [interactive studio](https://gkurt.com/tegaki/studio/).\n\n## Framework Support\n\nTegaki works with all major frameworks:\n\n```tsx\nimport { TegakiRenderer } from 'tegaki/react';   // React\nimport { TegakiRenderer } from 'tegaki/svelte';  // Svelte\nimport { TegakiRenderer } from 'tegaki/vue';     // Vue\nimport { TegakiRenderer } from 'tegaki/solid';   // SolidJS\n```\n\n```astro\n---\nimport TegakiRenderer from 'tegaki/astro';       // Astro\n---\n```\n\n```ts\nimport { TegakiEngine } from 'tegaki/core';      // Vanilla JS\nimport { registerTegakiElement } from 'tegaki/wc'; // Web Components\n```\n\n## Built-in Fonts\n\nSeveral handwriting fonts are bundled and ready to use:\n\n- **Caveat** — `tegaki/fonts/caveat` _(Latin)_\n- **Italianno** — `tegaki/fonts/italianno` _(Latin)_\n- **Tangerine** — `tegaki/fonts/tangerine` _(Latin)_\n- **Parisienne** — `tegaki/fonts/parisienne` _(Latin)_\n- **Suez One** — `tegaki/fonts/suez-one` _(Hebrew + Latin)_\n- **Amiri** — `tegaki/fonts/amiri` _(Arabic + Latin)_\n- **Tillana** — `tegaki/fonts/tillana` _(Devanagari + Latin)_\n- **Klee One** — `tegaki/fonts/klee-one` _(Japanese: kana + Kyōiku grade 1–2 kanji + Latin)_\n- **Nanum Pen Script** — `tegaki/fonts/nanum-pen-script` _(Korean: Hangul syllables + jamo + Latin)_\n\nFor other fonts, use the [interactive studio](https://gkurt.com/tegaki/studio/) to create a custom bundle.\n\n## Documentation\n\nVisit **[gkurt.com/tegaki](https://gkurt.com/tegaki)** for full documentation:\n\n- [Getting Started](https://gkurt.com/tegaki/getting-started/)\n- [Framework Guides](https://gkurt.com/tegaki/frameworks/react/) (React, Svelte, Vue, SolidJS, Astro, Web Components, Vanilla)\n- [Generating Fonts](https://gkurt.com/tegaki/guides/generating/)\n- [API Reference](https://gkurt.com/tegaki/api/renderer/)\n\n## Integrations\n\n- [Sli.dev](https://sli.dev/) - Create presentations using markdown. [See Tegaki integration example](https://andreas-taranetz.github.io/slidev-addon-animated-text/)\n- [Remotion](https://www.remotion.dev/) - Create videos programmatically with React. [See Tegaki integration example](https://github.com/gkurt/tegaki/blob/gokhan/support-font-features/examples/remotion/src/Root.tsx)\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgkurt%2Ftegaki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgkurt%2Ftegaki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgkurt%2Ftegaki/lists"}