{"id":23049873,"url":"https://github.com/themimikyu/mappa","last_synced_at":"2026-02-12T12:33:37.822Z","repository":{"id":268238038,"uuid":"903728721","full_name":"TheMimikyu/mappa","owner":"TheMimikyu","description":"Generate mind maps using Ollama local models and interact with them through an intuitive interface.","archived":false,"fork":false,"pushed_at":"2024-12-15T12:52:24.000Z","size":7579,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T17:28:35.638Z","etag":null,"topics":["ai","mindmap","nextjs","ollama","react","react-flow","shadcn-ui","typescript"],"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/TheMimikyu.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}},"created_at":"2024-12-15T12:13:08.000Z","updated_at":"2025-02-05T05:39:31.000Z","dependencies_parsed_at":"2024-12-15T13:25:32.039Z","dependency_job_id":"debbcfc7-737c-4bd0-8f6d-bf6e15af0e77","html_url":"https://github.com/TheMimikyu/mappa","commit_stats":null,"previous_names":["themimikyu/mappa"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMimikyu%2Fmappa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMimikyu%2Fmappa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMimikyu%2Fmappa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMimikyu%2Fmappa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheMimikyu","download_url":"https://codeload.github.com/TheMimikyu/mappa/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246930106,"owners_count":20856543,"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":["ai","mindmap","nextjs","ollama","react","react-flow","shadcn-ui","typescript"],"created_at":"2024-12-15T23:17:37.291Z","updated_at":"2026-02-12T12:33:37.741Z","avatar_url":"https://github.com/TheMimikyu.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mappa - AI Powered Mind Map Visualization\n\nA [Next.js](https://nextjs.org) application for mind map visualization powered by [React Flow](https://reactflow.dev/). Built with [shadcn](https://ui.shadcn.com/) and [Magic UI](https://magicui.design/).\n\nGenerate mind maps using [Ollama](https://ollama.com/) local models and interact with them through an intuitive interface.\n\n## Demo\n\nhttps://github.com/user-attachments/assets/36efb7f5-f1d0-4ae6-9b64-2a3dfb517354\n\n\n## Features\n\n- Interactive mind map visualization\n- Node details sidebar\n- Export to Markdown or JSON\n- Local model support via Ollama\n\n## Getting Started\n\n1. Install dependencies:\n```bash\nnpm install\n```\n\n2. Configure Model:\n- In `route.ts`, specify your Ollama model (default: `llama3.2`)\n- Note: Local models are slower than cloud-based ones\n- See [Ollama docs](https://github.com/ollama/ollama/blob/main/README.md#quickstart) for model setup\n\n3. Start server:\n```bash\nnpm run dev\n```\n\n4. Access application:\n- Open [http://localhost:3000](http://localhost:3000)\n- Begin creating mind maps\n\n## Configuration\n\nMind map generation prompts are configured in `prompts.ts` under `defaultLocalPrompt` variable.\n\n## Usage\n\n### Creating a Mind Map\n1. Enter a topic in the input field\n2. Wait for the AI to generate the initial mind map\n3. Click nodes to view details in the sidebar\n4. Use the expand button (➡️) to generate subtopics\n5. Toggle subtopics using the arrow buttons\n\n### Navigation\n- Pan: Drag empty space\n- Zoom: Mouse wheel or pinch gesture\n- Select: Click on nodes\n- Move: Drag nodes (if enabled)\n- Expand: Click arrow button on nodes\n\n### Exporting\n- Download as Markdown: Creates a hierarchical document\n- Download as JSON: Preserves full mind map structure\n\n### Project Structure\n\n```\n├── README.md\n├── app\n│   ├── api\n│   │   └── generate\n│   │       └── route.ts\n│   ├── components\n│   │   ├── CreateMindMap.tsx\n│   │   ├── CreateMindMapForm.tsx\n│   │   ├── Credits.tsx\n│   │   ├── Hero.tsx\n│   │   ├── LoadingMindMap.tsx\n│   │   ├── MindMap.tsx\n│   │   ├── MindMapContainer.tsx\n│   │   └── MindMapLegend.tsx\n│   ├── favicon.ico\n│   ├── fonts\n│   ├── globals.css\n│   ├── hooks\n│   │   └── useMindMapData.ts\n│   ├── layout.tsx\n│   ├── lib\n│   │   ├── prompts.ts\n│   │   └── schemas.ts\n│   └── page.tsx\n├── components\n│   └── ui\n├── components.json\n├── lib\n│   └── utils.ts\n├── next-env.d.ts\n├── next.config.mjs\n├── package-lock.json\n├── package.json\n├── postcss.config.mjs\n├── public\n│   └── demo.mp4\n├── tailwind.config.ts\n└── tsconfig.json\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemimikyu%2Fmappa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemimikyu%2Fmappa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemimikyu%2Fmappa/lists"}