{"id":47725376,"url":"https://github.com/devlargs/largs-hub","last_synced_at":"2026-04-02T20:19:22.606Z","repository":{"id":348348214,"uuid":"1196993016","full_name":"devlargs/largs-hub","owner":"devlargs","description":"Open source Rambox/Station/Wavebox alternative built with Electron + React. My Personal Social Workstation","archived":false,"fork":false,"pushed_at":"2026-03-31T20:31:41.000Z","size":359,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-31T20:40:07.278Z","etag":null,"topics":["rambox","rambox-alternative","station","wavebox"],"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/devlargs.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-31T08:25:54.000Z","updated_at":"2026-03-31T20:31:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devlargs/largs-hub","commit_stats":null,"previous_names":["devlargs/largs-hub"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/devlargs/largs-hub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlargs%2Flargs-hub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlargs%2Flargs-hub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlargs%2Flargs-hub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlargs%2Flargs-hub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlargs","download_url":"https://codeload.github.com/devlargs/largs-hub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlargs%2Flargs-hub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31315474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["rambox","rambox-alternative","station","wavebox"],"created_at":"2026-04-02T20:19:21.975Z","updated_at":"2026-04-02T20:19:22.591Z","avatar_url":"https://github.com/devlargs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Largs Hub\n\nAn open-source workspace browser — manage all your web apps in one place. A free alternative to [Rambox](https://rambox.app/).\n\n\u003cimg width=\"1912\" height=\"1031\" alt=\"image\" src=\"https://github.com/user-attachments/assets/329e701e-6bce-47ed-82bf-8397a87fb0b5\" /\u003e\n\n## Features\n\n- Add and manage multiple web services (Gmail, Slack, Discord, WhatsApp, etc.) in a single window\n- Each service runs in its own isolated session (separate cookies/logins)\n- Badge notifications for unread counts\n- Custom titlebar with navigation controls (back, forward, reload)\n- Persistent window size and position\n- Drag-and-drop sidebar reordering\n\n## Tech Stack\n\n- **Electron** — Desktop shell with multi-view architecture (`WebContentsView`)\n- **React 19** — UI framework\n- **TypeScript** — Type safety across the entire codebase\n- **Vite** — Dev server and bundler\n- **Tailwind CSS 4** — Styling\n- **electron-store** — Persistent local storage for services and preferences\n- **electron-builder** — Packaging and distribution\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v18 or higher recommended)\n- npm\n\n### Installation\n\n```bash\ngit clone https://github.com/devlargs/largs-hub.git\ncd largs-hub\nnpm install\n```\n\n### Development\n\n```bash\nnpm run dev\n```\n\nThis starts the Vite dev server and Electron concurrently with hot reload.\n\n### Build\n\n```bash\nnpm run build\n```\n\nCompiles TypeScript and builds the Vite production bundle.\n\n### Package Executable\n\n```bash\nnpm run electron:build\n```\n\nBuilds the app and creates a platform-specific installer in the `release/` folder.\n\n\u003e **Note (Windows):** If you encounter symlink errors during packaging, enable **Developer Mode** in Settings \u003e System \u003e For developers.\n\n## Project Structure\n\n```\nlargs-hub/\n├── electron/          # Electron main process \u0026 preload\n│   ├── main.ts\n│   └── preload.ts\n├── src/               # React renderer\n│   ├── components/    # UI components\n│   ├── assets/        # Service icons\n│   ├── App.tsx\n│   └── main.tsx\n├── assets/            # App icons\n└── package.json\n```\n\n## Contributing\n\nContributions are welcome! Here's how to get started:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feat/your-feature`)\n3. Make your changes\n4. Commit with a descriptive message (`git commit -m \"feat: add your feature\"`)\n5. Push to your fork (`git push origin feat/your-feature`)\n6. Open a Pull Request\n\n### Guidelines\n\n- Follow the existing code style (TypeScript, functional React components)\n- Keep PRs focused — one feature or fix per PR\n- Test your changes locally with `npm run dev` before submitting\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlargs%2Flargs-hub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlargs%2Flargs-hub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlargs%2Flargs-hub/lists"}