{"id":28447588,"url":"https://github.com/iziuqo/figma-nodes","last_synced_at":"2026-05-04T12:36:24.293Z","repository":{"id":296301180,"uuid":"992862134","full_name":"iziuqo/figma-nodes","owner":"iziuqo","description":"Community-driven documentation of Figma's internal JSON format for clipboard, plugins, and design automation","archived":false,"fork":false,"pushed_at":"2025-05-29T23:38:07.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-06T12:06:33.690Z","etag":null,"topics":["clipboard","community","design-automation","design-tools","documentation","figma","figma-api","json","plugin-development","reverse-engineering"],"latest_commit_sha":null,"homepage":"https://figma-nodes.vercel.app","language":"Shell","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/iziuqo.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2025-05-29T20:40:54.000Z","updated_at":"2025-05-29T23:38:11.000Z","dependencies_parsed_at":"2025-05-30T00:27:45.922Z","dependency_job_id":"2fa169b4-6b02-4ce2-87b5-14a8a4959e9f","html_url":"https://github.com/iziuqo/figma-nodes","commit_stats":null,"previous_names":["iziuqo/figma-nodes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iziuqo/figma-nodes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iziuqo%2Ffigma-nodes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iziuqo%2Ffigma-nodes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iziuqo%2Ffigma-nodes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iziuqo%2Ffigma-nodes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iziuqo","download_url":"https://codeload.github.com/iziuqo/figma-nodes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iziuqo%2Ffigma-nodes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32607894,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"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":["clipboard","community","design-automation","design-tools","documentation","figma","figma-api","json","plugin-development","reverse-engineering"],"created_at":"2025-06-06T12:06:06.636Z","updated_at":"2026-05-04T12:36:24.285Z","avatar_url":"https://github.com/iziuqo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Figma Internal JSON Format Documentation\n\n\u003e **🚀 Community-driven documentation of Figma's internal node JSON structure**\n\n[![GitHub stars](https://img.shields.io/github/stars/iziuqo/figma-nodes?style=social)](https://github.com/iziuqo/figma-nodes)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)\n\n## 🎯 What is this?\n\nThis repository contains comprehensive documentation of Figma's internal JSON format used for:\n- **Clipboard operations** (`application/x-figma-design` MIME type)\n- **Plugin API interactions**\n- **Design automation and tooling**\n- **Cross-platform design data exchange**\n\n## 📚 Documentation\n\n- **[Complete Format Guide](docs/format-guide.md)** - Comprehensive documentation of all node types and properties\n- **[Quick Reference](docs/quick-reference.md)** - Cheat sheet for common properties\n- **[Plugin Examples](examples/plugins/)** - Working plugin code examples\n- **[JSON Samples](examples/json/)** - Real-world JSON structure examples\n\n## 🚀 Quick Start\n\n### For Plugin Developers\n```javascript\n// Read node properties\nconst node = figma.currentPage.selection[0];\nconsole.log({\n  type: node.type,\n  name: node.name,\n  dimensions: { width: node.width, height: node.height },\n  position: { x: node.x, y: node.y }\n});\n```\n\n### For Clipboard Analysis\n```javascript\n// In browser console (Figma web)\nnavigator.clipboard.readText().then(text =\u003e {\n  if (text.includes('application/x-figma-design')) {\n    const data = JSON.parse(text);\n    console.log('Figma nodes:', data);\n  }\n});\n```\n\n## 🤝 Contributing\n\nWe welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n**Ways to contribute:**\n- 📝 **Documentation** - Improve existing docs or add missing sections\n- 🔍 **Discovery** - Find and document new properties or node types\n- 💡 **Examples** - Add real-world JSON samples or plugin code\n- 🧪 **Testing** - Create test cases for different scenarios\n\n## ⚠️ Important Notes\n\n- **Unofficial Documentation** - This is community research, not official Figma docs\n- **Format Changes** - Figma's internal format may change without notice\n- **Use at Own Risk** - Always test thoroughly in production environments\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 📄 Motivation\n\nThis project was created by [izaias](http://izaias.vercel.app) while trying to understand **Google Stitch's Copy to Figma** feature.\n\n---\n\n**💡 Found this useful?** Give it a star ⭐ and share with other Figma developers!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiziuqo%2Ffigma-nodes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiziuqo%2Ffigma-nodes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiziuqo%2Ffigma-nodes/lists"}