{"id":20123246,"url":"https://github.com/citizen428/repl","last_synced_at":"2026-06-05T06:31:32.984Z","repository":{"id":57667459,"uuid":"155221617","full_name":"citizen428/repl","owner":"citizen428","description":"Wrap CLI tools in a REPL","archived":false,"fork":false,"pushed_at":"2022-04-30T07:22:49.000Z","size":12,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T04:06:52.160Z","etag":null,"topics":["cli","golang","repl","tools"],"latest_commit_sha":null,"homepage":"","language":"Go","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/citizen428.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}},"created_at":"2018-10-29T14:02:24.000Z","updated_at":"2025-08-03T21:07:06.000Z","dependencies_parsed_at":"2022-09-02T14:11:03.875Z","dependency_job_id":null,"html_url":"https://github.com/citizen428/repl","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/citizen428/repl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/citizen428%2Frepl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/citizen428%2Frepl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/citizen428%2Frepl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/citizen428%2Frepl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/citizen428","download_url":"https://codeload.github.com/citizen428/repl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/citizen428%2Frepl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33932048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","golang","repl","tools"],"created_at":"2024-11-13T19:44:03.497Z","updated_at":"2026-06-05T06:31:32.960Z","avatar_url":"https://github.com/citizen428.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# repl —- Add more read-eval-print-love in your life\n\n`repl` is an interactive program which wraps non-interactive programs. Inspired by [Chris Wanstrath](https://github.com/defunkt)'s original [Ruby version](https://github.com/defunkt/repl). It comes with\nline editing capabilities (including history and completions) provided by [liner](https://github.com/peterh/liner).\n\n## Installation\n\n### Homebrew\n\n```sh\n$ brew tap citizen428/homebrew-tap\n$ brew install repl-go\n```\n\n### Release\n\nHead over to the [release page](https://github.com/citizen428/repl/releases) and download the archive for your operating system/architecture.\n\n### Manual\n\n```sh\ngit clone https://github.com/citizen428/repl.git\ncd repl\ngo build\n```\n\n## Examples\n\nRuby's gem command:\n\n```\n$ repl gem\ngem\u003e\u003e --version\n2.7.6\n\ngem\u003e\u003e list --local\nast (2.4.0)\nawesome_print (1.8.0)\nbigdecimal (default: 1.3.4)\nbundler (1.17.1, 1.16.6)\nbyebug (10.0.2)\ncmath (default: 1.0.0)\n[...]\n```\n\nDocker:\n\n```\n$ repl docker\ndocker\u003e\u003e version\nClient:\nVersion:           18.06.1-ce\nAPI version:       1.38\nGo version:        go1.10.3\nGit commit:        e68fc7a\nBuilt:             Tue Aug 21 17:21:31 2018\nOS/Arch:           darwin/amd64\nExperimental:      false\n[...]\n\ndocker\u003e\u003e images\nREPOSITORY            TAG                 IMAGE ID            CREATED             SIZE\ncitizen428/unsavory   latest              abe19fd175b0        6 days ago          6.6MB\ncitizen428/unsavory   v0.2.0              abe19fd175b0        6 days ago          6.6MB\ngolang                alpine              95ec94706ff6        3 weeks ago         310MB\n```\n\n## Usage\n\n```\n$ repl\nUsage:\n  repl cmd [options]\n\nOptions:\n  -compdir string\n    \tDirectory for completion files (default \"/Users/\u003cusername\u003e/.repl\")\n  -debug\n    \tEnable debug output\n  -histdir string\n    \tDirectory for history file (default \"/Users/\u003cusername\u003e\")\n```\n\n## Completions\n\nSince [liner](https://github.com/peterh/liner) supports completions, `repl` does too. Any file in\nthe directory specified via the `-compdir` option matching the name of the command you start `repl`\nwith will be used for completions.\n\nFor instance, a file named `~/.repl/redis-cli` containing \"get set info\" will cause \"get\", \"set\", and\n\"info\" to be tab completeable at the `repl redis-cli` prompt.\n\nThis is compatible with the original [repl-completion](http://github.com/defunkt/repl-completion)\nproject, which contains a few common, pre-rolled completion files.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/citizen428/repl.\n\n## TODO\n\n- [ ] Add tests\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcitizen428%2Frepl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcitizen428%2Frepl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcitizen428%2Frepl/lists"}