{"id":44930697,"url":"https://github.com/roflsunriz/vbbb","last_synced_at":"2026-04-14T04:00:56.583Z","repository":{"id":338661725,"uuid":"1158624988","full_name":"roflsunriz/VBBB","owner":"roflsunriz","description":"VBBB is a \"V\"ersatile \"B\"ulletin \"B\"oard \"B\"rowser compatible with 5ch, Shitaraba, and MachiBBS.","archived":false,"fork":false,"pushed_at":"2026-03-28T03:20:34.000Z","size":1509,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T08:40:49.102Z","etag":null,"topics":["2ch","2chan","2channel","5ch","5chan","5channel","bbs","browser","machibbs","shitaraba"],"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/roflsunriz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-15T17:15:28.000Z","updated_at":"2026-03-28T03:20:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/roflsunriz/VBBB","commit_stats":null,"previous_names":["roflsunriz/vbbb"],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/roflsunriz/VBBB","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roflsunriz%2FVBBB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roflsunriz%2FVBBB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roflsunriz%2FVBBB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roflsunriz%2FVBBB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roflsunriz","download_url":"https://codeload.github.com/roflsunriz/VBBB/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roflsunriz%2FVBBB/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31781292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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":["2ch","2chan","2channel","5ch","5chan","5channel","bbs","browser","machibbs","shitaraba"],"created_at":"2026-02-18T06:00:44.763Z","updated_at":"2026-04-14T04:00:56.576Z","avatar_url":"https://github.com/roflsunriz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VBBB - 汎用掲示板ブラウザ\n\n2ch/5ch 系掲示板を閲覧・投稿するためのデスクトップアプリケーション。\n\n## 主な機能\n\n- レス中の画像をサムネイル表示し、専用ビューアで拡大・保存・複数画像切り替え\n- 動画・音声リンクを専用プレイヤーウィンドウで再生\n- 次スレ検出・ここまで読んだ・NG・タブ管理など、専ブラ向けの基本機能を搭載\n\n## ダウンロード\n\n最新リリースは [Releases](../../releases) からダウンロードできます。\n\n- **Windows 10/11 (x64)** — `VBBB Setup x.x.x.exe`\n\n\u003e Linux / macOS 向けバイナリは公式には提供していません。\n\u003e 自前ビルドについては下記「[自前ビルド](#自前ビルド)」を参照してください。\n\n## 技術スタック\n\n- Electron + Node.js\n- TypeScript (strict)\n- Vite (electron-vite)\n- React + TailwindCSS\n- Zod (ランタイムバリデーション)\n- Vitest + Playwright (テスト)\n\n## 環境構築\n\n### 前提条件\n\n- Node.js \u003e= 22\n- bun \u003e= 1.0\n\n### セットアップ\n\n```bash\n# 依存パッケージのインストール\nbun install\n\n# 環境変数ファイルの準備\ncp .env.example .env\n```\n\n## 開発\n\n```bash\n# 開発サーバー起動 (ホットリロード対応)\nbun run dev\n\n# ビルド (トランスパイルのみ)\nbun run build\n\n# 配布用ビルド (Windows インストーラー生成)\nbun run build:dist\n```\n\n## コード品質\n\n```bash\n# リンター\nbun run lint\nbun run lint:fix\n\n# 型チェック\nbun run type-check\n\n# フォーマット\nbun run format\nbun run format:check\n```\n\n## テスト\n\n```bash\n# ユニットテスト\nbun run test\nbun run test:watch\n\n# E2E テスト\nbun run test:e2e\n```\n\n## 自前ビルド\n\n### Windows (推奨・動作確認済み)\n\n```bash\nbun install\nbun run build:win\n# → release/ に NSIS インストーラー (.exe) が生成されます\n```\n\n### Linux ⚠️ 自己責任\n\n\u003e **警告**: Linux 向けビルドは動作確認を行っていません。ビルド・実行は自己責任でお願いします。\n\u003e 不具合報告は歓迎しますが、サポートは保証できません。\n\n```bash\nbun install\nbun run build:linux\n# → release/ に AppImage が生成されます\n```\n\n### macOS ⚠️ 自己責任\n\n\u003e **警告**: macOS 向けビルドは動作確認を行っていません。ビルド・実行は自己責任でお願いします。\n\u003e コード署名なしのビルドのため、Gatekeeper の警告が表示される場合があります。\n\u003e 不具合報告は歓迎しますが、サポートは保証できません。\n\n```bash\nbun install\nbun run build:mac\n# → release/ に .dmg が生成されます\n```\n\n## ディレクトリ構成\n\n```\nsrc/\n  main/           # Electron メインプロセス\n  preload/        # プリロードスクリプト (contextBridge)\n  renderer/       # React フロントエンド\n  types/          # TypeScript 型定義 (一元管理)\ndocs/             # 仕様ドキュメント\ntests/\n  unit/           # ユニットテスト (Vitest)\n  e2e/            # E2E テスト (Playwright)\n```\n\n## ライセンス\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froflsunriz%2Fvbbb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froflsunriz%2Fvbbb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froflsunriz%2Fvbbb/lists"}