{"id":28844487,"url":"https://github.com/xenoverseup/trane","last_synced_at":"2026-01-20T17:35:02.130Z","repository":{"id":298979158,"uuid":"1001731444","full_name":"XenoverseUp/trane","owner":"XenoverseUp","description":"A parallel task runner with a better UX built using Node.","archived":false,"fork":false,"pushed_at":"2025-06-13T23:16:07.000Z","size":11082,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-14T00:18:24.554Z","etag":null,"topics":["concurrently","nodejs","npm","task","tui"],"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/XenoverseUp.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}},"created_at":"2025-06-13T22:57:42.000Z","updated_at":"2025-06-13T23:16:10.000Z","dependencies_parsed_at":"2025-06-14T00:28:36.207Z","dependency_job_id":null,"html_url":"https://github.com/XenoverseUp/trane","commit_stats":null,"previous_names":["xenoverseup/trane"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/XenoverseUp/trane","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XenoverseUp%2Ftrane","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XenoverseUp%2Ftrane/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XenoverseUp%2Ftrane/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XenoverseUp%2Ftrane/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XenoverseUp","download_url":"https://codeload.github.com/XenoverseUp/trane/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XenoverseUp%2Ftrane/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260797935,"owners_count":23064887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["concurrently","nodejs","npm","task","tui"],"created_at":"2025-06-19T17:41:09.627Z","updated_at":"2026-01-20T17:35:02.118Z","avatar_url":"https://github.com/XenoverseUp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Trane \u0026middot; [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/xenoverseup/trane/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/@xenoverseup/trane?color=blue)](https://www.npmjs.com/package/@xenoverseup/trane) [![Downloads/week](https://img.shields.io/npm/dw/@xenoverseup/trane)](https://www.npmjs.com/package/@xenoverseup/trane) [![Stars](https://img.shields.io/github/stars/xenoverseup/trane?style=social)](https://github.com/xenoverseup/trane/stargazers)\n\n**Trane** is a modern CLI for running parallel tasks with a user-friendly TUI.\nThink [Concurrently](https://www.npmjs.com/package/concurrently), but with a better interface, alias support, runtime validation, and developer-first ergonomics. Create `trane.json` file in the root directory. Define commands and the working directories. Then simply run `trane`.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./docs/showcase.gif\" alt=\"Trane showcase\" width=\"700\" /\u003e\n\u003c/p\u003e\n\n## Install\n\n```bash\nnpm install --global @xenoverseup/trane\n```\n\n## Usage\n\n```bash\ntrane --help\n```\n\n### CLI Options\n\n```\nUsage\n  $ trane [options] [alias]\n\nOptions\n  --file, -f     Path to command config (default: ./trane.json)\n  --list         List all available aliases\n  --version, -v  Show CLI version\n  --help, -h     Show CLI help\n\nExamples\n  $ trane                # Launch interactive TUI from trane.json\n  $ trane --file=custom.json\n  $ trane --list         # Show all available aliases\n  $ trane build          # Run alias \"build\" defined in config\n```\n\n## Config File (`trane.json`)\n\nDefine tasks in a config file:\n\n```json\n{\n  \"tasks\": {\n    \"server\": {\n      \"label\": \"Server\",\n      \"command\": \"bun\",\n      \"args\": [\"run\", \"dev\"]\n    },\n    \"dashboard\": {\n      \"label\": \"Dashboard\",\n      \"command\": \"bun\",\n      \"args\": [\"dev\"],\n      \"cwd\": \"./www/dashboard\"\n    },\n    \"landing\": {\n      \"label\": \"Landing\",\n      \"command\": \"npm\",\n      \"args\": [\"run\", \"dev\"],\n      \"cwd\": \"./www/landing\"\n    }\n  }\n}\n```\n\n### Types for `trane.json`\n\nIf your editor supports it, enable auto-completion and type-checking:\n\n```jsonc\n// @ts-check\n// @type {import('@xenoverseup/trane/config').default}\n{\n  \"tasks\": {...}\n}\n```\n\n## TODO Roadmap\n\n- [x] Go migration\n- [ ] Fix posinstall script\n- [ ] Export logs to file\n- [ ] Timestamp each output\n- [ ] Native buffer support\n- [ ] Clear/reset output buffer\n- [ ] Dual modes: interactive / headless\n- [ ] Autocomplete alias names\n\n---\n\n[Muhammed Can Durmus](https://github.com/xenoverseup) · 2025\n\nLicensed under the [MIT License](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoverseup%2Ftrane","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxenoverseup%2Ftrane","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoverseup%2Ftrane/lists"}