{"id":50931489,"url":"https://github.com/lijingcheng3359/openview","last_synced_at":"2026-06-17T05:00:30.669Z","repository":{"id":364368003,"uuid":"1267596439","full_name":"lijingcheng3359/openview","owner":"lijingcheng3359","description":"Lightweight file viewer for macOS — designed for reviewing AI-generated code. Tauri 2 + Solid.js.","archived":false,"fork":false,"pushed_at":"2026-06-12T18:25:53.000Z","size":1517,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-12T20:09:11.452Z","etag":null,"topics":["ai-coding","code-review","developer-tools","macos","markdown","solidjs","tauri"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lijingcheng3359.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-06-12T17:27:52.000Z","updated_at":"2026-06-12T18:23:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lijingcheng3359/openview","commit_stats":null,"previous_names":["lijingcheng3359/openview"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/lijingcheng3359/openview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lijingcheng3359%2Fopenview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lijingcheng3359%2Fopenview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lijingcheng3359%2Fopenview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lijingcheng3359%2Fopenview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lijingcheng3359","download_url":"https://codeload.github.com/lijingcheng3359/openview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lijingcheng3359%2Fopenview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34434496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ai-coding","code-review","developer-tools","macos","markdown","solidjs","tauri"],"created_at":"2026-06-17T05:00:25.320Z","updated_at":"2026-06-17T05:00:30.640Z","avatar_url":"https://github.com/lijingcheng3359.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenView\n\nA lightweight, high-performance file viewer for macOS, built with [Tauri 2](https://tauri.app/) + [Solid.js](https://www.solidjs.com/).\n\n![OpenView Preview](preview.png)\n\n## Why OpenView?\n\nIn the age of AI-assisted coding, developers increasingly work alongside AI agents (Claude Code, Cursor, Copilot, etc.) that generate and modify code. The human role shifts from writing code to **reviewing AI output** — reading diffs, previewing rendered markdown, checking data files, and browsing project structure.\n\nOpenView is purpose-built for this workflow: an ultra-lightweight, read-oriented viewer that lets you quickly preview and review AI-generated artifacts without the overhead of a full IDE. No plugins, no extensions, no configuration — just open a folder and start reviewing.\n\n## Features\n\n- **Markdown Viewer** — Split-pane viewer with live preview, GFM support (tables, strikethrough, tasklists), hover-to-expand\n- **CSV Viewer** — Interactive table with sorting, filtering, and search across all cells\n- **Mermaid Diagrams** — Live rendering with pan \u0026 zoom, error recovery\n- **Git Integration** — Commit history, per-file diff viewer with unified/side-by-side modes\n- **Project Switcher** — Quick switch between recent projects (remembers last 10)\n- **File Search** — Recursive filename search across the entire project\n\n## Install\n\nDownload the latest `.dmg` from [Releases](https://github.com/lijingcheng3359/openview/releases), open it and drag OpenView to Applications.\n\nSince the app is not signed with an Apple Developer certificate, macOS will block it on first launch. Run this command to fix:\n\n```bash\nsudo xattr -rd com.apple.quarantine /Applications/OpenView.app\n```\n\n## Tech Stack\n\n| Layer | Technology |\n|-------|-----------|\n| App Framework | Tauri 2 (Rust + system WebKit) |\n| Frontend | Solid.js |\n| Text Editor | CodeMirror 6 |\n| Markdown | pulldown-cmark (Rust, SIMD) |\n| CSV | csv crate (Rust) |\n| Git | git2 (libgit2 bindings) |\n| Diagrams | mermaid.js |\n| Diff | diff2html |\n\n## Performance\n\n- ~7 MB binary, ~73 MB memory usage\n- No bundled browser engine (uses system WebKit)\n- Rust-powered file parsing with SIMD acceleration\n\n## Build\n\n### Prerequisites\n\n- [Rust](https://rustup.rs/) (1.86+)\n- [Node.js](https://nodejs.org/) (22+)\n- macOS 12+\n\n### Development\n\n```bash\nnpm install\nnpx tauri dev\n```\n\n### Production Build\n\n```bash\nnpx tauri build\n```\n\nThe built app is at `src-tauri/target/release/bundle/macos/OpenView.app`.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flijingcheng3359%2Fopenview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flijingcheng3359%2Fopenview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flijingcheng3359%2Fopenview/lists"}