{"id":49491992,"url":"https://github.com/yamanote1138/yardbird","last_synced_at":"2026-05-11T22:05:20.222Z","repository":{"id":337585178,"uuid":"49125153","full_name":"yamanote1138/yardbird","owner":"yamanote1138","description":"Vue 3 web interface for controlling model railroad layouts via JMRI's WebSocket API","archived":false,"fork":false,"pushed_at":"2026-05-10T19:59:22.000Z","size":2314,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-10T21:35:02.907Z","etag":null,"topics":["jmri","model-trains","railroad","vuejs","websocket"],"latest_commit_sha":null,"homepage":null,"language":"Vue","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/yamanote1138.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":"2016-01-06T09:12:55.000Z","updated_at":"2026-05-10T19:58:06.000Z","dependencies_parsed_at":"2026-02-26T10:02:48.916Z","dependency_job_id":null,"html_url":"https://github.com/yamanote1138/yardbird","commit_stats":null,"previous_names":["yamanote1138/io-thechad-trains","yamanote1138/yardbird"],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/yamanote1138/yardbird","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yamanote1138%2Fyardbird","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yamanote1138%2Fyardbird/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yamanote1138%2Fyardbird/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yamanote1138%2Fyardbird/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yamanote1138","download_url":"https://codeload.github.com/yamanote1138/yardbird/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yamanote1138%2Fyardbird/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32914569,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-11T17:09:15.040Z","status":"ssl_error","status_checked_at":"2026-05-11T17:08:45.420Z","response_time":120,"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":["jmri","model-trains","railroad","vuejs","websocket"],"created_at":"2026-05-01T07:01:27.637Z","updated_at":"2026-05-11T22:05:20.216Z","avatar_url":"https://github.com/yamanote1138.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"public/favicon.svg\" width=\"96\" alt=\"YardBird\" /\u003e\n  \u003ch1\u003eYardBird\u003c/h1\u003e\n  \u003cp\u003eA drag-and-drop layout control panel for model railroads.\u003c/p\u003e\n\u003c/div\u003e\n\n---\n\nYardBird is a pure frontend SPA that connects directly to your layout hardware — no backend server, no database. Build your control panel visually: create tabs, drag widgets onto a grid, and configure each one. Your layout is saved locally and can be exported as a YAML file.\n\n## Features\n\n- **Visual dashboard editor** — drag widgets onto a grid, resize, reorder tabs, import/export config\n- **Locomotive throttles** — speed, direction, and function buttons from your JMRI roster\n- **Turnouts** — toggle switch positions via JMRI / LCC\n- **Lights** — toggle LCC lights, independent of track power\n- **DC tram control** — JMRI-native tram loop control via a DCC-EX sub-connection, with configurable PWM frequency\n- **Command station power** — per-connection power buttons with combined on/off in the header\n- **Home Assistant** — control HA lights and switches from your dashboard\n- **Responsive** — works on desktop, tablet, and mobile\n\n## Quick start\n\n### Docker\n\n```bash\nmkdir -p config\ncp yardbird.example.yaml config/yardbird.yaml\n$EDITOR config/yardbird.yaml   # set your JMRI host\ndocker compose up -d\n```\n\nOpen `http://localhost:9273`.\n\n### Development\n\n```bash\nnpm install\nnpm run dev    # http://localhost:5173\n```\n\nSee [docs/installation.md](docs/installation.md) for full setup details, including JMRI prerequisites and DCC-EX tram control.\n\n## Configuration\n\nConnection settings are managed through the UI and saved in localStorage. `yardbird.yaml` provides factory defaults — it is only read when no saved config exists (first run or after a reset).\n\nSee [docs/configuration.md](docs/configuration.md) for the full YAML schema, widget reference, and export/import format.\n\n## Architecture\n\nSee [docs/architecture.md](docs/architecture.md) for the plugin system, config flow, Gridstack canvas details, and how to add new widget types.\n\n## Tech Stack\n\n| | |\n|---|---|\n| [Vue 3](https://vuejs.org/) + TypeScript | Composition API throughout |\n| [Vite](https://vitejs.dev/) | Dev server and build tool |\n| [Nuxt UI 4](https://ui.nuxt.com/) + [Tailwind CSS 4](https://tailwindcss.com/) | UI components and styling |\n| [Gridstack](https://gridstackjs.com/) | Drag-and-drop grid canvas |\n| [jmri-client](https://www.npmjs.com/package/jmri-client) | JMRI WebSocket communication |\n| [js-yaml](https://github.com/nodeca/js-yaml) | Config file parsing and export |\n\n## License\n\nPrivate use only\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyamanote1138%2Fyardbird","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyamanote1138%2Fyardbird","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyamanote1138%2Fyardbird/lists"}