{"id":47737873,"url":"https://github.com/andersseen/vertex","last_synced_at":"2026-04-04T23:06:27.588Z","repository":{"id":346873752,"uuid":"1190913205","full_name":"Andersseen/vertex","owner":"Andersseen","description":"A lightweight, high-performance IDE built with Angular 21, Tauri, Bun, and CodeMirror 6.","archived":false,"fork":false,"pushed_at":"2026-03-25T20:32:07.000Z","size":1106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T19:49:44.674Z","etag":null,"topics":["angular","bun","codemirror","ide","monorepo","rust","tauri"],"latest_commit_sha":null,"homepage":"http://vertex.andersseen.dev","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/Andersseen.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-24T18:34:38.000Z","updated_at":"2026-03-25T20:32:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Andersseen/vertex","commit_stats":null,"previous_names":["andersseen/vertex"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Andersseen/vertex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andersseen%2Fvertex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andersseen%2Fvertex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andersseen%2Fvertex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andersseen%2Fvertex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andersseen","download_url":"https://codeload.github.com/Andersseen/vertex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andersseen%2Fvertex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31318137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T21:35:00.834Z","status":"ssl_error","status_checked_at":"2026-04-02T21:34:59.806Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["angular","bun","codemirror","ide","monorepo","rust","tauri"],"created_at":"2026-04-02T23:02:16.817Z","updated_at":"2026-04-02T23:02:17.474Z","avatar_url":"https://github.com/Andersseen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vertex IDE 🌌\n\n**Vertex** is not just another code editor; it is a \"point of convergence\" designed for speed, modularity, and precision. Built with the most cutting-edge technologies of the modern web ecosystem: **Angular 21**, **Bun**, **Tauri**, and **CodeMirror 6**.\n\n---\n\n## ⚡ The Vertex Philosophy\n\n### Why does Vertex exist?\nMost modern editors have fallen into the \"software obesity\" trap. They have become heavy platforms trying to solve every problem at once. Vertex is born with a different premise: **an IDE should be a surgical tool, not an operating system.**\n\nVertex (from Latin *vĕrtex*: summit, point of union) is the intersection between native performance and web flexibility.\n\n### Why is it not \"another VSCode clone\"?\nVSCode is an incredible tool, but its architecture is deeply tied to a monolithic model based on Electron and the Monaco editor. Vertex breaks away from this to offer:\n- **True Lightweight Performance**: Thanks to **Tauri (Rust)**, Vertex consumes a fraction of the memory used by Electron-based editors.\n- **Total Control**: We don't inherit VSCode's design decisions. Every pixel and every interaction is designed for a \"Zen\" experience.\n\n---\n\n## 🛠️ Technical Decisions: The \"Why\"\n\n### CodeMirror 6 vs. Monaco\nThis is the most critical technical decision in Vertex. While Monaco is the engine behind VSCode (powerful but rigid and heavy), we chose **CodeMirror 6** for its:\n- **Extreme Modularity**: CM6 is designed as a system of functional extensions. We can build exactly what we need without the overhead of a full desktop editor inside a tab.\n- **Accessibility \u0026 Mobile-Friendly**: CM6 behaves natively in the DOM, allowing for a much more fluid integration with **Angular** templates.\n- **Modernity**: Its functional state management and handling of large documents make it ideal for the \"Push-Pull\" reactivity architecture we are implementing.\n\n### Angular 21 + Signals\nWe use the latest version of Angular to leverage the new **Signals** model. This allows for granular reactivity: only what actually changes is updated, eliminating unnecessary change detection cycles and ensuring constant 60fps in the UI.\n\n### The Sidecar (Bun + Hono)\nInstead of a heavy Node.js process, we use a specialized **Sidecar** compiled with **Bun**. This provides an ultra-fast local API for file system operations and heavy processing, keeping the frontend lightweight and responsive.\n\n---\n\n## 📂 Monorepo Structure\n\n```\nvertex/\n├── apps/\n│   ├── web/              # Web Application (Cloudflare Pages ready)\n│   └── desktop/          # Desktop Application (Tauri + Rust)\n├── packages/\n│   ├── frontend/         # Shared libraries\n│   │   ├── types/        # Unified type contracts\n│   │   ├── core/         # Reactivity engine and base services\n│   │   └── ui/           # SCSS design system and components\n│   └── backend/\n│       └── sidecar/      # Minimalist Bun + Hono backend\n```\n\n---\n\n## 🚀 Quick Start\n\n### Prerequisites\n- [Bun](https://bun.sh) (v1.1+)\n- Rust (for the desktop build)\n\n### Main Commands\n\n```bash\n# Installation\nbun install\n\n# Web Development (Angular) - http://localhost:4200\nbun web:dev\n\n# Desktop Development (Tauri)\nbun desktop:dev\n\n# Run Everything (Frontend + Sidecar)\nbun dev:all\n```\n\n---\n\n## 🧪 Quality Strategy\n\n- **Unit Testing**: Vitest for business logic and Angular CLI for components.\n- **E2E Testing**: Playwright to ensure the user flow is perfect in Chrome, Firefox, and Safari.\n- **CI/CD**: Automated pipeline that validates types, lint, and tests on every push.\n\n---\n\n*Vertex is an evolving project. We seek perfection in simplicity.* 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandersseen%2Fvertex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandersseen%2Fvertex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandersseen%2Fvertex/lists"}