{"id":18925115,"url":"https://github.com/lyonsyonii/run","last_synced_at":"2025-04-07T13:10:25.978Z","repository":{"id":220588266,"uuid":"739470437","full_name":"LyonSyonII/run","owner":"LyonSyonII","description":"Run commands in the languages you love!","archived":false,"fork":false,"pushed_at":"2024-09-22T10:18:18.000Z","size":7786,"stargazers_count":111,"open_issues_count":3,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T04:15:06.769Z","etag":null,"topics":["cli","command","command-line","language","makefile","run","runfile","runner","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LyonSyonII.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2024-01-05T16:38:17.000Z","updated_at":"2025-03-13T14:04:36.000Z","dependencies_parsed_at":"2024-03-12T14:48:27.716Z","dependency_job_id":"a5db0861-c32e-4568-bddc-536bbda52dfe","html_url":"https://github.com/LyonSyonII/run","commit_stats":{"total_commits":151,"total_committers":3,"mean_commits":"50.333333333333336","dds":0.4635761589403974,"last_synced_commit":"4fb150fcac9bd9ea2b2248c2437ad1d5563ae26c"},"previous_names":["lyonsyonii/run"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LyonSyonII%2Frun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LyonSyonII%2Frun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LyonSyonII%2Frun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LyonSyonII%2Frun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LyonSyonII","download_url":"https://codeload.github.com/LyonSyonII/run/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247657282,"owners_count":20974345,"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":["cli","command","command-line","language","makefile","run","runfile","runner","rust"],"created_at":"2024-11-08T11:09:37.781Z","updated_at":"2025-04-07T13:10:25.931Z","avatar_url":"https://github.com/LyonSyonII.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Logo](assets/logo.svg)](https://crates.io/crates/runfile)\n\n\n[![Crates.io Version](https://img.shields.io/crates/v/runfile?style=flat)](https://crates.io/crates/runfile)\n\n\u003e Run commands in the languages you love!\n\n![Screenshot](assets/screenshot.png)\n\nCreate scripts with multiple commands easily with `run`.  \nYou can write a command in any of the [supported languages](#languages), and even mix them!\n\nAnd, if you have [`nix`](https://nixos.org/) installed, `run` will fetch the necessary packages automatically, there's no need to have any toolchain installed.\n\n## Features\n- Run commands in multiple languages seamlessly\n- Fetch language toolchains automatically with `nix`\n- Module system to reuse scripts\n- Supports both commands and subcommands\n- Self-contained in a single binary, no extra dependencies\n- `runfiles` are just text files, easy to share and version control\n\n## Languages\n`run` supports the following languages, with their respective command indicators:\n\n- [Rust](https://www.rust-lang.org/): `rust | rs`\n- [Python](https://www.python.org/): `python | py`\n- [Javascript](https://nodejs.org/): `javascript | js`\n- [Shell](https://en.wikipedia.org/wiki/Shell_script): `shell | sh`\n- [Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell)): `bash`\n- [C#](https://docs.microsoft.com/en-us/dotnet/csharp/): `csharp | cs | c#`\n- [C](https://en.wikipedia.org/wiki/C_(programming_language)): `c`\n- [C++](https://en.wikipedia.org/wiki/C%2B%2B): `cplusplus | cpp | c++`\n\nIf you want a language to be added, please open an issue or a pull request following the steps in [CONTRIBUTE.md](CONTRIBUTE.md).\n\n## Installation\nDownload the latest installer from the [releases page](https://github.com/LyonSyonII/run/releases).\n\nOr compile it yourself with `cargo`:\n\n```sh\ncargo install runfile\n```\n\n### VSCode Extension\nThere's a VSCode extension that provides syntax highlighting for `runfile` scripts.\n\nIt's experimental, so you'll need to install it manually.\n\n[Download the latest `.vsix`](https://raw.githubusercontent.com/LyonSyonII/run/main/extension/runfile-0.0.1.vsix?token=GHSAT0AAAAAACM7TI7UITOPPOEAUENEGCCMZN5QKYA) and run `code --install-extension runfile-0.0.1.vsix` to install it.\n\n## Usage\n\u003e `runfile` is to `run` what `makefile` is to `make`\n\nCreate a `runfile` wherever you want, and write your commands in it.  \nThen, run `run` in the same directory as the `runfile` to execute the commands.\n\nThe possible names for the `runfile` are: `run`, `runfile` or any file with the `.run` extension.\n\nIf you want to see the available commands run `run --commands`, or `run --help` for more information.\n\n### How to write a `runfile`\n![Example](assets/example.png)\n\nSee the `runfile` in the screenshot [here](examples/runfile.run).\n\n## Contributing\nContributions are welcome!\nIf you want to add a new language, follow the steps in [CONTRIBUTE.md](CONTRIBUTE.md).\n\n## License\nThis project is licensed under the [GPL-3.0](LICENSE) license.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flyonsyonii%2Frun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flyonsyonii%2Frun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flyonsyonii%2Frun/lists"}