{"id":42770013,"url":"https://github.com/d02ev/dsa-visualizer","last_synced_at":"2026-01-29T21:42:36.315Z","repository":{"id":302145941,"uuid":"1011424802","full_name":"d02ev/dsa-visualizer","owner":"d02ev","description":"A simple data structures and algorithms visualiser","archived":false,"fork":false,"pushed_at":"2025-06-30T20:03:37.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-30T20:41:31.072Z","etag":null,"topics":["cursor-ide","prompt-engineering","react","typescript","vibe-coding","vite"],"latest_commit_sha":null,"homepage":"https://dsavisualise.netlify.app/","language":"TypeScript","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/d02ev.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-06-30T19:50:39.000Z","updated_at":"2025-06-30T20:15:58.000Z","dependencies_parsed_at":"2025-06-30T20:51:37.222Z","dependency_job_id":null,"html_url":"https://github.com/d02ev/dsa-visualizer","commit_stats":null,"previous_names":["d02ev/dsa-visualizer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/d02ev/dsa-visualizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d02ev%2Fdsa-visualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d02ev%2Fdsa-visualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d02ev%2Fdsa-visualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d02ev%2Fdsa-visualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d02ev","download_url":"https://codeload.github.com/d02ev/dsa-visualizer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d02ev%2Fdsa-visualizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28886420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"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":["cursor-ide","prompt-engineering","react","typescript","vibe-coding","vite"],"created_at":"2026-01-29T21:42:34.253Z","updated_at":"2026-01-29T21:42:36.306Z","avatar_url":"https://github.com/d02ev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DSA Visualizer\n\nA modern, interactive web application for learning Data Structures and Algorithms through visualizations. Built with React, TypeScript, and Bootstrap 5.3.\n\n## 🚀 Features\n\n- **Interactive Visualizations**: Step-by-step animations for algorithms and data structures\n- **Dark/Light Theme**: Toggle between themes with persistent preferences\n- **Responsive Design**: Works seamlessly on desktop, tablet, and mobile devices\n- **Comprehensive Coverage**: From basic arrays to advanced graph algorithms\n- **Educational Focus**: Designed specifically for learning and understanding DSA concepts\n- **Modern Routing**: Clean URL structure with React Router\n\n## 🛠️ Tech Stack\n\n- **Frontend**: React 19.1.0 with TypeScript\n- **Routing**: React Router DOM\n- **Styling**: Bootstrap 5.3.7 with custom CSS\n- **Icons**: Bootstrap Icons\n- **Build Tool**: Vite\n- **Package Manager**: npm\n\n## 📦 Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/dsa-visualizer.git\ncd dsa-visualizer\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Start the development server:\n```bash\nnpm run dev\n```\n\n4. Open your browser and navigate to `http://localhost:5173`\n\n## 🏗️ Project Structure\n\n```\ndsa-visualizer/\n├── src/\n│   ├── components/\n│   │   ├── algorithms/          # Algorithm visualizers\n│   │   ├── data-structures/     # Data structure visualizers\n│   │   ├── layout/              # Layout components (Navbar)\n│   │   ├── pages/               # Page components (Welcome)\n│   │   └── ui/                  # Reusable UI components\n│   ├── pages/                   # Route pages\n│   ├── config/                  # Configuration files\n│   ├── contexts/                # React contexts (Theme)\n│   ├── hooks/                   # Custom React hooks\n│   ├── styles/                  # CSS files\n│   ├── types/                   # TypeScript type definitions\n│   └── utils/                   # Utility functions\n├── public/                      # Static assets\n└── package.json\n```\n\n## 🎯 Available Visualizations\n\n### Data Structures\n- ✅ **Arrays** - Basic array operations and properties\n- 🔄 **Linked Lists** - Coming soon\n- 🔄 **Stacks** - Coming soon\n- 🔄 **Queues** - Coming soon\n- 🔄 **Trees** - Coming soon\n- 🔄 **Graphs** - Coming soon\n\n### Algorithms\n- ✅ **Linear Search** - Sequential search algorithm\n- 🔄 **Binary Search** - Coming soon\n- 🔄 **Bubble Sort** - Coming soon\n- 🔄 **Merge Sort** - Coming soon\n- 🔄 **Quick Sort** - Coming soon\n- 🔄 **DFS** - Coming soon\n- 🔄 **BFS** - Coming soon\n\n## 🧭 Navigation Structure\n\nThe application uses React Router with the following routes:\n\n- `/` - Welcome/Home page\n- `/data-structures` - Data structures overview page\n- `/data-structures/:id` - Individual data structure visualizer\n- `/algorithms` - Algorithms overview page\n- `/algorithms/:id` - Individual algorithm visualizer\n\n### Navigation Features\n\n- **Navbar Dropdowns**: Easy access to all data structures and algorithms\n- **Breadcrumb Navigation**: Clear indication of current location\n- **Responsive Design**: Mobile-friendly navigation\n- **Theme Toggle**: Accessible from the navbar\n\n## 🎨 Customization\n\n### Adding New Visualizations\n\n1. Create a new component in the appropriate directory:\n   - `src/components/algorithms/` for algorithms\n   - `src/components/data-structures/` for data structures\n\n2. Add the component to the configuration:\n   - `src/config/algorithms.ts` for algorithms\n   - `src/config/dataStructures.ts` for data structures\n\n3. The routing will automatically work with the new components.\n\n### Styling\n\nThe application uses Bootstrap 5.3 with custom CSS variables. You can customize the appearance by modifying:\n- `src/styles/globals.css` - Global styles and custom utilities\n- Bootstrap theme variables in the CSS file\n\n## 🚀 Deployment\n\n### Build for Production\n\n```bash\nnpm run build\n```\n\n### Preview Production Build\n\n```bash\nnpm run preview\n```\n\n### Deploy to Vercel\n\n1. Install Vercel CLI:\n```bash\nnpm i -g vercel\n```\n\n2. Deploy:\n```bash\nvercel\n```\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch: `git checkout -b feature-name`\n3. Make your changes\n4. Commit your changes: `git commit -m 'Add feature'`\n5. Push to the branch: `git push origin feature-name`\n6. Submit a pull request\n\n### Development Guidelines\n\n- Follow TypeScript best practices\n- Use functional components with hooks\n- Maintain responsive design\n- Add proper error handling\n- Include accessibility features\n- Write clean, documented code\n- Use React Router for navigation\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [Bootstrap](https://getbootstrap.com/) for the UI framework\n- [React](https://reactjs.org/) for the frontend library\n- [React Router](https://reactrouter.com/) for routing\n- [TypeScript](https://www.typescriptlang.org/) for type safety\n- [Vite](https://vitejs.dev/) for the build tool\n\n## 📞 Support\n\nIf you have any questions or need help, please open an issue on GitHub or contact the maintainers.\n\n---\n\n**Happy Learning! 🎓**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd02ev%2Fdsa-visualizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd02ev%2Fdsa-visualizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd02ev%2Fdsa-visualizer/lists"}