A hierarchical node management application built with Vue 3, Vite, and Electron. Organize tasks, notes, and information in a tree structure with multiple visualization modes.
- Multiple Views: Tree, Cards, Graph, Table, Timeline, Calendar, Tasks, and Persons views
- Node Types: Tasks, notes, topics, events, contacts, and more with distinct colors
- Hierarchical Organization: Nest nodes within nodes for structured data
- Detachable Windows: Open nodes in separate windows for focused editing
- Workspaces: Organize nodes into separate workspaces
- Search: Spotlight-style search (Cmd+K) for quick navigation
- Favorites & Recents: Quick access to frequently used nodes
- Keyboard Shortcuts: Efficient navigation and editing
- AI Notes: Local LLM integration via Ollama for improving, summarizing, and transforming notes
The app integrates with Ollama for local AI-powered note improvements.
- Install Ollama: https://ollama.ai/download
- Pull a model:
ollama pull llama3.2 - Start Ollama:
ollama serve - Enable AI in Settings and test the connection
- Preset Actions: Improve, Summarize, Expand, Fix Grammar, Simplify, Bullet Points, Action Items, Continue
- Custom Prompts: Create your own prompts in Settings
- Preview & Diff: Review changes before applying
- Undo Support: All AI changes can be undone
- Endpoint: Ollama server URL (default:
http://localhost:11434) - Model: Any Ollama model (default:
llama3.2) - Context Size: Token limit for processing (4K-128K, default: 32K)
- Node.js 20+
- npm
npm install# Web only
npm run dev
# Electron app
npm run electron:devnpm run test # Watch mode
npm run test:run # Single run# Web build
npm run build
# Electron app (macOS)
npm run electron:build| Command | Description |
|---|---|
make dev |
Start Electron app in development mode |
make install |
Install npm dependencies |
make build |
Build Electron app for production |
make stop |
Stop running dev servers (kills Electron and Vite processes) |
make clean |
Remove build artifacts (dist, dist-electron, .vite cache) |
make reset-db |
Delete the SQLite database (with 3s confirmation delay) |
- Frontend: Vue 3 with Composition API
- Build Tool: Vite
- Desktop: Electron
- Database: SQLite (via better-sqlite3)
- Testing: Vitest + Vue Test Utils
- Visualization: D3.js for graph view
electron-builder >= 26.x has a bug with the tar module ESM/CommonJS import on Node.js 20+:
SyntaxError: The requested module 'tar' does not provide an export named 'default'
Fix: Pin to older versions in package.json:
electron-builder: 25.1.8@electron/rebuild: 3.6.2