{"id":18561037,"url":"https://github.com/utilyre/climan","last_synced_at":"2026-04-29T00:31:11.684Z","repository":{"id":108780309,"uuid":"533285916","full_name":"utilyre/climan","owner":"utilyre","description":"A file based HTTP client","archived":false,"fork":false,"pushed_at":"2022-10-15T14:54:34.000Z","size":88,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-26T11:07:47.766Z","etag":null,"topics":["cli","client","golang","http","rest"],"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/utilyre.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":"2022-09-06T11:06:22.000Z","updated_at":"2023-01-04T20:26:51.000Z","dependencies_parsed_at":"2023-03-08T13:30:47.125Z","dependency_job_id":null,"html_url":"https://github.com/utilyre/climan","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilyre%2Fcliman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilyre%2Fcliman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilyre%2Fcliman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilyre%2Fcliman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utilyre","download_url":"https://codeload.github.com/utilyre/climan/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239287908,"owners_count":19614018,"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","client","golang","http","rest"],"created_at":"2024-11-06T22:05:33.269Z","updated_at":"2025-11-01T12:30:35.899Z","avatar_url":"https://github.com/utilyre.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eCLI Man\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  Make HTTP requests from command line \u003cstrong\u003eBLAZINGLY FASTER\u003c/strong\u003e!\n\u003c/p\u003e\n\n## 📦 Installation\n\n- [Latest Release](https://github.com/utilyre/climan/releases/latest).\n\n- [AUR](https://aur.archlinux.org/packages/climan-bin)\n\n  ```bash\n  yay -S climan-bin\n  ```\n\n- Manual\n\n  Clone the latest version of climan\n\n  ```bash\n  git clone --depth=1 --branch=v0.3.1 https://github.com/utilyre/climan.git\n  ```\n\n  Hop into the cloned repo and build\n\n  ```bash\n  cd climan\n  go build\n  ```\n\n## 🌟 Integration\n\n### Neovim\n\nIn order to get syntax highlighting with nvim-treesitter plugin run `:TSInstall\nhttp` and add the following to your config\n\n```lua\nvim.filetype.add({\n  extension = {\n    http = \"http\",\n    rest = \"http\",\n  },\n})\n```\n\n## 🚀 Usage\n\nHTTP file example (see [examples](/examples) for more)\n\n```http\n# example.http\n\n# [METHOD] [URL]\nPOST http://localhost:8080\n# [Header]: [value]\nContent-Type: application/json\nUser-Agent: Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.1.20) Gecko/20140827 Firefox/35.0\n# Environment variables in the form of ${VAR} will be replaced with their corresponding value if any\n# Prefix $ with a backslash to ignore (e.g. \\${VAR})\nAuthorization: Bearer ${TOKEN}\n\n# Body\n{\n  \"title\": \"climan\",\n  \"description\": \"A file based HTTP client\"\n}\n\n# The next line is an special type of comment that separates requests\n###\n\nGET http://localhost:8080\nUser-Agent: Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.1.20) Gecko/20140827 Firefox/35.0\n```\n\n**NOTE**: Trailing comment is _NOT_ available.\n\n---\n\nMake the first (and maybe the only) request of `example.http`\n\n```bash\ncliman example.http\n```\n\nMake the first request of `example.http` and replace `${TOKEN}` with\n`INSERT_TOKEN_HERE`\n\n```bash\nexport TOKEN=\"INSERT_TOKEN_HERE\"\ncliman -i 1 example.http\n```\n\nMake the second request of `example.http`\n\n```bash\ncliman -i 2 example.http\n```\n\nMake the last request of `example.http`\n\n```bash\ncliman -i -1 example.http\n```\n\nMake the second request of `example.http` and output verbosely\n\n```bash\ncliman -vi 2 example.http\n```\n\nLearn more\n\n```bash\ncliman -h\nman climan\n```\n\n## 🔖 To-do's\n\n- [x] Support for other request body types (like `text/xml` and `text/plain`).\n- [x] Parse the response body base on `Content-Type` header.\n- [x] Show response details.\n- [x] Colored output.\n- [ ] Colored response body.\n- [x] Environment variable support.\n- [ ] Add more `http` examples.\n\n## 📢 Credits\n\n- [REST Client](https://github.com/Huachao/vscode-restclient)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilyre%2Fcliman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futilyre%2Fcliman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilyre%2Fcliman/lists"}