{"id":30161253,"url":"https://github.com/corezen/graph-voyager","last_synced_at":"2026-05-01T17:35:59.432Z","repository":{"id":307731775,"uuid":"1030531636","full_name":"CoreZen/Graph-Voyager","owner":"CoreZen","description":"Interactive React app for visualizing and exploring graph data structures. Built with Vite and Tailwind CSS.","archived":false,"fork":false,"pushed_at":"2025-08-10T20:25:31.000Z","size":340,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-10T22:12:28.485Z","etag":null,"topics":["data-visualization","github-pages","graph-visualization","react","tailwindcss","vite"],"latest_commit_sha":null,"homepage":"https://corezen.github.io/Graph-Voyager/","language":"JavaScript","has_issues":true,"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/CoreZen.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}},"created_at":"2025-08-01T19:59:27.000Z","updated_at":"2025-08-10T20:25:27.000Z","dependencies_parsed_at":"2025-08-01T22:31:23.584Z","dependency_job_id":"38e57ad1-6701-4d3a-9494-626291fe08b6","html_url":"https://github.com/CoreZen/Graph-Voyager","commit_stats":null,"previous_names":["corezen/graph-voyager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CoreZen/Graph-Voyager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreZen%2FGraph-Voyager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreZen%2FGraph-Voyager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreZen%2FGraph-Voyager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreZen%2FGraph-Voyager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CoreZen","download_url":"https://codeload.github.com/CoreZen/Graph-Voyager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreZen%2FGraph-Voyager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32507091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["data-visualization","github-pages","graph-visualization","react","tailwindcss","vite"],"created_at":"2025-08-11T16:16:42.420Z","updated_at":"2026-05-01T17:35:59.425Z","avatar_url":"https://github.com/CoreZen.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Graph Voyager\n\nGraph Voyager is an interactive web application for visualizing and running algorithms on graph data structures. Built with React, Vite, and Tailwind CSS, it provides a simple interface for users to create, edit, and analyze graphs, making it ideal for learning and demonstration purposes.\n\n## 🌐 Live Demo\n\nView the latest deployed version on GitHub Pages:  \n[https://corezen.github.io/Graph-Voyager/](https://corezen.github.io/Graph-Voyager/)\n\n---\n\n## Project Description\n\nGraph Voyager enables users to:\n\n- **Visualize Graphs:** Draw nodes and connect them with edges on a canvas.\n- **Edit Graphs:** Add, delete, and move nodes; connect nodes with edges (including weighted and directed edges).\n- **Run Algorithms:** Step through and visualize Breadth-First Search (BFS), Depth-First Search (DFS), Dijkstra's Algorithm, and Strongly Connected Components (SCC).\n- **Sample Graphs:** Quickly generate random graphs or load sample graphs (tree, weighted, SCC).\n- **Algorithm Insights:** View algorithm progress, visited nodes, paths, and results in a sidebar.\n- **Adjust Animation:** Control the speed of algorithm animations.\n\n\nThe project leverages modern web technologies for performance and maintainability, but is currently focused on core graph editing and algorithm visualization.\n\n---\n\n## Sidebar Description\n\nThe sidebar in Graph Voyager serves as your control panel for graph algorithms and graph management. It allows you to:\n\n- **Select and Run Algorithms:** Choose which algorithm to visualize and control animation speed.\n- **Switch Graph Type:** Toggle between directed and undirected graphs.\n- **Generate or Clear Graphs:** Create random graphs, load sample graphs, or clear the current graph.\n- **View Algorithm Status:** See progress, visited nodes, paths, and results as the algorithm runs.\n\nThe sidebar is designed to keep essential controls and information at your fingertips, making graph algorithm exploration straightforward.\n\n---\n\n## Getting Started\n\n1. **Install dependencies:**\n   ```sh\n   npm install\n   ```\n\n2. **Run locally:**\n   ```sh\n   npm run dev\n   ```\n\n3. **Build for production:**\n   ```sh\n   npm run build\n   ```\n\n4. **Deploy to GitHub Pages:**\n   ```sh\n   npm run deploy\n   ```\n\n---\n\n## License\n\nThis project is licensed under the ISC License.\n\n---\n\n## Contributing\n\nPull requests and suggestions are welcome! Please open an issue to discuss your ideas or report bugs.\n\n---\n\n**Made with ❤️ using React, Vite, and Tailwind CSS.**\n\n---\n\n## TODO\n\n- [ ] Add pan and zoom functionality to the canvas\n- [ ] Implement export and import (save/load) for graph data\n- [ ] Add export to image (PNG/SVG)\n- [ ] Improve mobile responsiveness and accessibility\n- [ ] Add more graph algorithms (e.g., minimum spanning tree, topological sort)\n- [ ] Enhance sidebar with collapsible sections and search","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorezen%2Fgraph-voyager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorezen%2Fgraph-voyager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorezen%2Fgraph-voyager/lists"}