{"id":35219151,"url":"https://github.com/jgraph/drawio-tools","last_synced_at":"2026-04-08T14:32:31.733Z","repository":{"id":65985168,"uuid":"54953696","full_name":"jgraph/drawio-tools","owner":"jgraph","description":"Various tools for draw.io","archived":false,"fork":false,"pushed_at":"2026-03-25T15:22:12.000Z","size":288,"stargazers_count":170,"open_issues_count":1,"forks_count":59,"subscribers_count":12,"default_branch":"main","last_synced_at":"2026-03-26T17:44:27.951Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jgraph.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":null,"dco":null,"cla":null}},"created_at":"2016-03-29T07:06:21.000Z","updated_at":"2026-03-25T15:24:37.000Z","dependencies_parsed_at":"2024-12-20T15:35:54.615Z","dependency_job_id":"6608c7f6-9ab7-4989-9c20-c0d07c656f20","html_url":"https://github.com/jgraph/drawio-tools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jgraph/drawio-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraph%2Fdrawio-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraph%2Fdrawio-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraph%2Fdrawio-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraph%2Fdrawio-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jgraph","download_url":"https://codeload.github.com/jgraph/drawio-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraph%2Fdrawio-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31559803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2025-12-29T23:35:17.370Z","updated_at":"2026-04-08T14:32:31.720Z","avatar_url":"https://github.com/jgraph.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# draw.io Tools\n\nA collection of web-based utilities for working with [draw.io](https://www.drawio.com) diagrams.\n\n**[View the Tools →](https://jgraph.github.io/drawio-tools/)**\n\n## Tools\n\n### Text \u0026 Encoding\n- **[Text Tools](https://jgraph.github.io/drawio-tools/tools/text-tools.html)** - Compress, decompress, encode, and decode text using URL encoding, Base64, and deflate compression\n- **[Base64 Images](https://jgraph.github.io/drawio-tools/tools/base64.html)** - Convert images to Base64 data URLs for embedding\n\n### Diagram Files\n- **[MxFile Tools](https://jgraph.github.io/drawio-tools/tools/mxfile-tools.html)** - Validate and repair draw.io diagram files\n- **[Diagram Viewer](https://jgraph.github.io/drawio-tools/tools/viewer.html)** - View diagrams from public URLs and generate embeddable links\n- **[Image Merge](https://jgraph.github.io/drawio-tools/tools/merge.html)** - Stack multiple images vertically\n\n### Generation \u0026 Import\n- **[AI Generate](https://jgraph.github.io/drawio-tools/tools/generate.html)** - Generate diagrams from natural language using AI (ChatGPT, Claude, Gemini)\n- **[CSV Import](https://jgraph.github.io/drawio-tools/tools/csv.html)** - Convert CSV data into draw.io diagrams\n- **[Custom Links](https://jgraph.github.io/drawio-tools/tools/link.html)** - Create interactive diagram links with actions\n\n### Legacy Tools\n- [Navigator](https://jgraph.github.io/drawio-tools/tools/navigator.html) - Browser information viewer\n- [Tickets](https://jgraph.github.io/drawio-tools/tools/tickets.html) - Freshdesk tickets editor\n\n## Development\n\n### Prerequisites\n\n- Node.js 18+\n- npm\n\n### Getting Started\n\n```bash\n# Clone the repository\ngit clone https://github.com/jgraph/drawio-tools.git\ncd drawio-tools\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm run dev\n```\n\n### Build\n\n```bash\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n```\n\n### Project Structure\n\n```\ndrawio-tools/\n├── src/                    # Source files\n│   ├── index.html          # Landing page\n│   ├── styles/             # CSS styles\n│   ├── utils/              # Shared JavaScript utilities\n│   └── tools/              # Individual tool pages\n├── public/                 # Static assets\n├── tools/                  # Legacy tools (original versions)\n├── package.json            # npm configuration\n├── vite.config.js          # Vite build configuration\n└── CLAUDE.md               # Developer guide\n```\n\n### Technology Stack\n\n- **Build Tool**: [Vite](https://vitejs.dev/)\n- **JavaScript**: ES Modules\n- **CSS**: CSS Custom Properties with automatic dark mode\n- **Compression**: [pako](https://github.com/nodeca/pako)\n\n## License\n\nApache-2.0 License - see [LICENSE](LICENSE) for details.\n\n## Links\n\n- [draw.io](https://www.drawio.com)\n- [draw.io on GitHub](https://github.com/jgraph/drawio)\n- [Report Issues](https://github.com/jgraph/drawio-tools/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraph%2Fdrawio-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjgraph%2Fdrawio-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraph%2Fdrawio-tools/lists"}