{"id":41651626,"url":"https://github.com/mblode/react-vello","last_synced_at":"2026-01-24T16:13:24.361Z","repository":{"id":330941670,"uuid":"1096059384","full_name":"mblode/react-vello","owner":"mblode","description":"Blazing fast React renderer powered by Vello","archived":false,"fork":false,"pushed_at":"2025-12-30T23:33:22.000Z","size":1002,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-01T04:37:56.450Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://react-vello.blode.co","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/mblode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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},"funding":{"github":"mblode"}},"created_at":"2025-11-13T22:16:41.000Z","updated_at":"2025-12-30T23:33:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mblode/react-vello","commit_stats":null,"previous_names":["mblode/react-vello"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mblode/react-vello","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mblode%2Freact-vello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mblode%2Freact-vello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mblode%2Freact-vello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mblode%2Freact-vello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mblode","download_url":"https://codeload.github.com/mblode/react-vello/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mblode%2Freact-vello/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28731223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-24T16:13:23.610Z","updated_at":"2026-01-24T16:13:24.356Z","avatar_url":"https://github.com/mblode.png","language":"TypeScript","funding_links":["https://github.com/sponsors/mblode"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# React Vello\n\n**Blazing fast React renderer powered by [Vello](https://github.com/linebender/vello)**\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/react-vello\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/react-vello?style=flat\u0026colorA=000000\u0026colorB=000000\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/mblode/react-vello/blob/main/LICENSE.md\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/mblode/react-vello?style=flat\u0026colorA=000000\u0026colorB=000000\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003c/div\u003e\n\n## Demo\n\nTry the live demo.\n\n\u003cp\u003e\n\u003ca href=\"https://react-vello.blode.co\"\u003e\n\u003cimg alt=\"View demo\" src=\".github/assets/demo.svg\" width=\"200\" /\u003e\n\u003c/a\u003e\n\u003c/p\u003e\n\n## Install\n\n```shell\nnpm install react-vello react react-dom\n```\n\n## Quickstart\n\n```html\n\u003ccanvas id=\"vello\"\u003e\u003c/canvas\u003e\n```\n\n```tsx\nimport { Canvas, Rect, Text, createVelloRoot } from \"react-vello\";\n\nconst canvas = document.querySelector(\"#vello\") as HTMLCanvasElement;\nconst root = createVelloRoot(canvas);\n\nroot.render(\n  \u003cCanvas width={640} height={360}\u003e\n    \u003cRect\n      origin={[40, 40]}\n      size={[200, 120]}\n      fill={{ kind: \"solid\", color: \"#3b82f6\" }}\n      radius={16}\n    /\u003e\n    \u003cText\n      origin={[60, 110]}\n      font={{ family: \"Space Grotesk\", size: 32, weight: 600 }}\n      fill={{ kind: \"solid\", color: \"#0f172a\" }}\n    \u003e\n      Hello Vello\n    \u003c/Text\u003e\n  \u003c/Canvas\u003e\n);\n```\n\n## Notes\n\n- WebGPU is required; use a browser with WebGPU enabled.\n- The WASM renderer ships with the package; no extra setup required.\n\n## License\n\n[MIT](LICENSE.md)\n\n---\n\n\u003csub\u003eInspired by [react-three-fiber](https://github.com/pmndrs/react-three-fiber), [react-konva](https://github.com/konvajs/react-konva), and [react-pdf](https://github.com/diegomura/react-pdf).\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmblode%2Freact-vello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmblode%2Freact-vello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmblode%2Freact-vello/lists"}