{"id":47608292,"url":"https://github.com/bright-room/uniso","last_synced_at":"2026-04-01T19:41:25.673Z","repository":{"id":345526867,"uuid":"1186264710","full_name":"bright-room/uniso","owner":"bright-room","description":"A unified desktop client for managing multiple SNS accounts in one place.","archived":false,"fork":false,"pushed_at":"2026-03-27T19:07:42.000Z","size":9348,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T01:44:34.643Z","etag":null,"topics":["desktop-app","electron","multi-account","pnpm","react","sns","social-media","typescript","vite"],"latest_commit_sha":null,"homepage":"","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/bright-room.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":".github/CODEOWNERS","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-19T12:51:53.000Z","updated_at":"2026-03-27T18:48:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bright-room/uniso","commit_stats":null,"previous_names":["bright-room/uniso"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/bright-room/uniso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bright-room%2Funiso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bright-room%2Funiso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bright-room%2Funiso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bright-room%2Funiso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bright-room","download_url":"https://codeload.github.com/bright-room/uniso/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bright-room%2Funiso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: 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":["desktop-app","electron","multi-account","pnpm","react","sns","social-media","typescript","vite"],"created_at":"2026-04-01T19:41:23.861Z","updated_at":"2026-04-01T19:41:25.658Z","avatar_url":"https://github.com/bright-room.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Uniso\n\nA unified desktop client for managing multiple SNS accounts in one place.\n\nUniso lets you log in to X, Instagram, Facebook, YouTube, Bluesky, and Twitch simultaneously — each in its own isolated browser session — and switch between them with a single click or keyboard shortcut.\n\n## Features\n\n- **Multi-service, multi-account** — manage accounts across 6 services in one window\n- **Session isolation** — each account has its own cookies and storage; no cross-account leakage\n- **Persistent sessions** — close and reopen without re-logging in\n- **Crash recovery** — automatic save with restore-on-crash prompt\n- **Smart memory management** — LRU-based WebView lifecycle with configurable background limits\n- **Link routing** — internal links open in the right account; external links go to your browser\n- **Keyboard shortcuts** — fast account switching, reload, settings access\n- **i18n** — Japanese and English with OS locale detection\n- **Local-only storage** — SQLite database; all data stays on your device\n- **Auto-update** — background update checks via electron-updater\n\n## Requirements\n\n- **macOS** 12+ or **Windows** 10+\n- **Node.js** 24+ and **pnpm** 10+ (for building from source)\n\n## Building from Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/bright-room/uniso.git\ncd uniso\n\n# Install dependencies\npnpm install\n\n# Run the application in development mode\npnpm dev\n\n# Run linter\npnpm lint\n\n# Run type checking\npnpm typecheck\n\n# Run tests\npnpm test\n\n# Package for macOS (DMG)\npnpm package:mac\n\n# Package for Windows (NSIS installer)\npnpm package:win\n```\n\n## Project Structure\n\n```\nuniso/\n├── apps/desktop/              # Electron main app (@uniso/desktop)\n│   ├── src/main/              #   Main process (lifecycle, IPC, WebView management)\n│   ├── src/preload/           #   Preload script (typed API bridge)\n│   ├── src/renderer/          #   React renderer (hooks, App.tsx)\n│   └── e2e/                   #   Playwright E2E tests\n├── packages/\n│   ├── shared/                # Business logic \u0026 types (@uniso/shared)\n│   │   ├── src/domain/        #   AccountManager, SessionManager, LinkRouter, etc.\n│   │   ├── src/data/          #   Repositories (account, session, settings, database)\n│   │   ├── src/types/         #   TypeScript type definitions\n│   │   ├── src/i18n/          #   Localization (en.json, ja.json)\n│   │   └── src/__tests__/     #   Unit tests (Vitest)\n│   └── ui/                    # React component library (@uniso/ui)\n│       ├── src/features/      #   Sidebar, dialogs, settings, onboarding\n│       ├── src/primitives/    #   DialogOverlay, ServiceIcon, ToggleSwitch\n│       └── src/theme/         #   Design tokens, CSS variables\n├── .github/workflows/         # CI/CD pipelines\n├── biome.json                 # Linter \u0026 formatter config\n├── pnpm-workspace.yaml        # Monorepo workspace definition\n└── tsconfig.base.json         # Shared TypeScript config\n```\n\n## Tech Stack\n\n- **Electron** 41 — desktop runtime\n- **React** 19 — UI framework\n- **TypeScript** 5.9 — language\n- **Vite** 7 + **electron-vite** 5 — build tooling\n- **sql.js** — SQLite via WASM\n- **Biome** — linter and formatter\n- **Vitest** — unit tests\n- **Playwright** — E2E tests\n- **Storybook** 10 — UI component development\n- **electron-builder** — native packaging (DMG, NSIS)\n- **electron-updater** — auto-update\n\n## Contributing\n\nWe welcome contributions! Please read our [Contributing Guide](.github/CONTRIBUTING.md)\nto get started.\n\n## Code of Conduct\n\nThis project follows the [Contributor Covenant Code of Conduct](.github/CODE_OF_CONDUCT.md).\nBy participating, you are expected to uphold this code.\n\n## License\n\nThis project is licensed under the **MIT License**. See the [LICENSE](LICENSE)\nfile for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbright-room%2Funiso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbright-room%2Funiso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbright-room%2Funiso/lists"}