{"id":29855862,"url":"https://github.com/rokartur/zsh-httpie-request-manager","last_synced_at":"2025-08-01T01:03:00.964Z","repository":{"id":306502960,"uuid":"1026385171","full_name":"rokartur/zsh-httpie-request-manager","owner":"rokartur","description":"A powerful shell script that enhances HTTPie with request management capabilities, allowing you to save, organize, and reuse HTTP requests with an interactive file picker","archived":false,"fork":false,"pushed_at":"2025-07-25T22:45:13.000Z","size":14,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-26T04:38:29.293Z","etag":null,"topics":["bash","bash-script","cli","http","httpie","httpie-cli","https","manager","oh-my-zsh","oh-my-zsh-plugin","requests","zsh","zsh-plugin","zsh-plugins"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/rokartur.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,"zenodo":null}},"created_at":"2025-07-25T19:47:02.000Z","updated_at":"2025-07-25T22:45:17.000Z","dependencies_parsed_at":"2025-07-26T04:48:41.180Z","dependency_job_id":null,"html_url":"https://github.com/rokartur/zsh-httpie-request-manager","commit_stats":null,"previous_names":["rokartur/httpie-request-manager"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rokartur/zsh-httpie-request-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rokartur%2Fzsh-httpie-request-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rokartur%2Fzsh-httpie-request-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rokartur%2Fzsh-httpie-request-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rokartur%2Fzsh-httpie-request-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rokartur","download_url":"https://codeload.github.com/rokartur/zsh-httpie-request-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rokartur%2Fzsh-httpie-request-manager/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267779233,"owners_count":24143185,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"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":["bash","bash-script","cli","http","httpie","httpie-cli","https","manager","oh-my-zsh","oh-my-zsh-plugin","requests","zsh","zsh-plugin","zsh-plugins"],"created_at":"2025-07-29T23:23:37.334Z","updated_at":"2025-07-29T23:23:41.320Z","avatar_url":"https://github.com/rokartur.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HTTPie Request Manager\n\nA powerful shell script that enhances HTTPie with request management capabilities, allowing you to save, organize, and reuse HTTP requests with an interactive file picker.\n\n## Features\n\n- **Automatic Request Saving**: Every HTTPie command automatically saves to timestamped `.http` files\n- **Interactive File Browser**: Use `http list` to browse saved requests with fuzzy search (fzf)\n- **File Preview**: Preview request content with syntax highlighting using bat\n- **Quick Edit**: Edit requests directly from the picker (Ctrl+E)\n- **Easy Cleanup**: Delete unwanted requests with Ctrl+X\n- **Request Replay**: Execute saved `.http` files as HTTPie commands\n- **Smart Parsing**: Automatically parses HTTP request format and converts to HTTPie arguments\n- **HTTPS Support**: Both `http` and `https` commands are supported\n\n## Installation\n\n### Prerequisites\n\nMake sure you have the following tools installed:\n\n```bash\nbrew install httpie fzf bat\n```\n\n### Plugin Installation\n\nCreate a new directory in `$ZSH_CUSTOM/plugins` called `zsh-httpie-request-manager` and clone this repo into that directory.\n```bash\ngit clone https://github.com/rokartur/zsh-httpie-request-manager.git $ZSH_CUSTOM/plugins/zsh-httpie-request-manager\n```\n\n## Usage\n\n### Basic HTTPie Commands (with auto-save)\n```bash\n# Make a GET request (automatically saved)\nhttp GET https://api.github.com/users/octocat\n\n# POST with JSON data (automatically saved)\nhttp POST https://httpbin.org/post name=John age:=30\n\n# HTTPS requests work the same way\nhttps GET api.github.com/users/octocat\n\n# All your regular HTTPie commands work and get saved automatically!\n```\n\n### Browse and Reuse Saved Requests\n```bash\n# Launch interactive request browser\nhttp list\n\n# In the browser:\n# - Use arrow keys or type to search\n# - Press Enter to execute selected request\n# - Ctrl+E to edit the request file with vim\n# - Ctrl+X to delete the request file\n```\n\n### Execute Saved Request Files\n```bash\n# Run a specific saved request\nhttp /path/to/saved/request.http\n\n# Add additional arguments\nhttp /path/to/saved/request.http --verbose --timeout=30\n```\n\n## File Organization\n\nSaved requests are stored in `~/.httpie/requests/` with timestamps:\n```\n~/.httpie/requests/\n├── 2025_01_15_at_14_30_22.http\n├── 2025_01_15_at_15_45_10.http\n└── 2025_01_15_at_16_20_05.http\n```\n\nEach `.http` file contains the complete HTTP request in standard format:\n```http\nGET /users/octocat HTTP/1.1\nHost: api.github.com\nUser-Agent: HTTPie/3.2.0\nAccept: application/json\n\n```\n\n## Contributing\n\nWe welcome contributions! Here are some ways you can help:\n\n### Report Issues\n- Found a bug? [Open an issue](https://github.com/rokartur/httpie-request-manager/issues)\n- Request parsing not working for your use case? Let us know!\n\n### Development\n1. Fork the repository\n2. Create a feature branch: `git checkout -b feature/amazing-feature`\n3. Make your changes\n4. Test thoroughly with different HTTPie commands\n5. Commit your changes: `git commit -m 'Add amazing feature'`\n6. Push to the branch: `git push origin feature/amazing-feature`\n7. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [HTTPie](https://httpie.io/) - HTTP client\n- [fzf](https://github.com/junegunn/fzf) - fuzzy finder\n- [bat](https://github.com/sharkdp/bat) - file viewer with syntax highlighting\n\n---\n\n**Star ⭐ this repo if you**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frokartur%2Fzsh-httpie-request-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frokartur%2Fzsh-httpie-request-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frokartur%2Fzsh-httpie-request-manager/lists"}