{"id":28194540,"url":"https://github.com/hasirciogli/visualmind","last_synced_at":"2025-06-20T12:33:45.846Z","repository":{"id":291326852,"uuid":"977288528","full_name":"hasirciogli/visualmind","owner":"hasirciogli","description":"Visual Mind is a tool that helps you create mind maps from text. It uses AI to generate mind maps from text.","archived":false,"fork":false,"pushed_at":"2025-05-03T21:30:11.000Z","size":2214,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-18T20:04:22.230Z","etag":null,"topics":["mind-map","mind-map-generator","mind-map-tool","visual-mind","visual-mind-map","visualmind"],"latest_commit_sha":null,"homepage":"","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/hasirciogli.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-05-03T21:12:41.000Z","updated_at":"2025-05-03T21:30:14.000Z","dependencies_parsed_at":"2025-05-03T22:36:00.246Z","dependency_job_id":null,"html_url":"https://github.com/hasirciogli/visualmind","commit_stats":null,"previous_names":["hasirciogli/visualmind"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hasirciogli/visualmind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasirciogli%2Fvisualmind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasirciogli%2Fvisualmind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasirciogli%2Fvisualmind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasirciogli%2Fvisualmind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hasirciogli","download_url":"https://codeload.github.com/hasirciogli/visualmind/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasirciogli%2Fvisualmind/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260944950,"owners_count":23086923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["mind-map","mind-map-generator","mind-map-tool","visual-mind","visual-mind-map","visualmind"],"created_at":"2025-05-16T13:12:20.471Z","updated_at":"2025-06-20T12:33:40.833Z","avatar_url":"https://github.com/hasirciogli.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Visual Mind\n\nVisual Mind is a tool that helps you create interactive mind maps from a topic you enter, using artificial intelligence.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"_images/example-0.png?raw=true\" alt=\"Visual Mind Example 0\" width=\"100%\"/\u003e\n  \u003cimg src=\"_images/example-1.png?raw=true\" alt=\"Visual Mind Example 1\" width=\"100%\"/\u003e\n  \u003cimg src=\"_images/example-2.png?raw=true\" alt=\"Visual Mind Example 2\" width=\"100%\"/\u003e\n\u003c/p\u003e\n\n## ✨ Features\n\n- **AI-Powered:** Automatically generates a mind map for the specified topic.\n- **Interactive Interface:** Allows dragging nodes and zooming/panning the generated mind map (using `reactflow`).\n- **Dark Mode:** Features a sleek, eye-friendly dark theme interface.\n- **Custom Nodes:** Nodes display the topic title and AI-generated descriptions (if available). Descriptions appear next to the nodes.\n\n## 🛠️ Tech Stack\n\n- **Frontend:**\n  - [Next.js](https://nextjs.org/) (React Framework)\n  - [React](https://reactjs.org/)\n  - [React Flow](https://reactflow.dev/) (For mind map visualization)\n  - [TypeScript](https://www.typescriptlang.org/)\n- **Backend (API):**\n  - Next.js API Routes\n  - [@google/genai](https://github.com/google/generative-ai-js) (For communicating with the Google Gemini API)\n- **Styling:**\n  - Inline Styles \u0026 Global CSS (JSX)\n\n## 🚀 Getting Started\n\nFollow these steps to run the project locally on your machine:\n\n1.  **Clone the Repository:**\n\n    ```bash\n    git clone https://github.com/hasirciogli/visualmind.git\n    cd visualmind\n    ```\n\n2.  **Install Dependencies:**\n\n    ```bash\n    npm install\n    # or\n    # yarn install\n    ```\n\n3.  **Environment Variables:**\n    Create a file named `.env.local` in the project's root directory. You'll need to add your Google Gemini API key to this file (required for the backend API to work):\n\n    ```env\n    GOOGLE_API_KEY=YOUR_GOOGLE_API_KEY\n    ```\n\n    You can obtain an API key from [Google AI Studio](https://aistudio.google.com/app/apikey).\n\n4.  **Start the Development Server:**\n\n    ```bash\n    npm run dev\n    # or\n    # yarn dev\n    ```\n\n5.  Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n## 📖 Usage\n\n1.  When you open the application, enter the topic you want to create a mind map for in the input field (e.g., \"Artificial Intelligence\", \"Quantum Physics\").\n2.  Click the \"Generate\" button.\n3.  The AI will generate a mind map related to your topic and display it on the screen.\n4.  You can drag the nodes on the map and zoom in/out using the mouse wheel. Additional information boxes will appear next to nodes that include descriptions.\n\n## 🤝 Contributing\n\nContributions help make the project better. To report a bug or suggest a new feature, please open an \"Issue\" or submit a \"Pull Request\".\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the `LICENSE` file in the project's GitHub repository for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasirciogli%2Fvisualmind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasirciogli%2Fvisualmind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasirciogli%2Fvisualmind/lists"}