# tegaki
**Repository Path**: chong00li/tegaki
## Basic Information
- **Project Name**: tegaki
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2026-04-27
- **Last Updated**: 2026-04-27
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Tegaki
**Handwriting animation for any font**
Tegaki (手書き) turns any font into animated handwriting.
No manual path authoring. No native dependencies. Just pick a font.
[](https://www.npmjs.com/package/tegaki)
[](https://github.com/KurtGokhan/tegaki/blob/main/LICENSE)
---
## Quick Start
**1. Install**
```bash
npm install tegaki
```
**2. Use** (React example)
```tsx
import { TegakiRenderer } from 'tegaki';
import caveat from 'tegaki/fonts/caveat';
function App() {
return (
Hello World
);
}
```
That's it. The text draws itself stroke by stroke with natural timing.
## Framework Support
Tegaki works with all major frameworks:
```tsx
import { TegakiRenderer } from 'tegaki/react'; // React
import { TegakiRenderer } from 'tegaki/svelte'; // Svelte
import { TegakiRenderer } from 'tegaki/vue'; // Vue
import { TegakiRenderer } from 'tegaki/solid'; // SolidJS
```
```astro
---
import TegakiRenderer from 'tegaki/astro'; // Astro
---
```
```ts
import { TegakiEngine } from 'tegaki/core'; // Vanilla JS
import { registerTegakiElement } from 'tegaki/wc'; // Web Components
```
## Built-in Fonts
Four handwriting fonts are bundled and ready to use:
- **Caveat** — `tegaki/fonts/caveat`
- **Italianno** — `tegaki/fonts/italianno`
- **Tangerine** — `tegaki/fonts/tangerine`
- **Parisienne** — `tegaki/fonts/parisienne`
For other fonts, use the [interactive generator](https://gkurt.com/tegaki/generator/) to create a custom bundle.
## Documentation
Visit **[gkurt.com/tegaki](https://gkurt.com/tegaki)** for full documentation:
- [Getting Started](https://gkurt.com/tegaki/getting-started/)
- [Framework Guides](https://gkurt.com/tegaki/frameworks/react/) (React, Svelte, Vue, SolidJS, Astro, Web Components, Vanilla)
- [Generating Fonts](https://gkurt.com/tegaki/guides/generating/)
- [API Reference](https://gkurt.com/tegaki/api/renderer/)
## License
[MIT](LICENSE)