{"id":17961547,"url":"https://github.com/k-nasa/goku","last_synced_at":"2025-03-25T04:31:10.703Z","repository":{"id":40534232,"uuid":"220116015","full_name":"k-nasa/goku","owner":"k-nasa","description":"goku is a HTTP load testing application written in Rust ","archived":false,"fork":false,"pushed_at":"2023-01-16T20:04:36.000Z","size":175,"stargazers_count":34,"open_issues_count":9,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-19T08:43:42.656Z","etag":null,"topics":["benchmark","http","load-testing","rust"],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/k-nasa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["k-nasa"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-11-07T00:21:43.000Z","updated_at":"2024-10-24T02:32:38.000Z","dependencies_parsed_at":"2023-01-22T05:03:50.278Z","dependency_job_id":null,"html_url":"https://github.com/k-nasa/goku","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-nasa%2Fgoku","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-nasa%2Fgoku/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-nasa%2Fgoku/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-nasa%2Fgoku/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k-nasa","download_url":"https://codeload.github.com/k-nasa/goku/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245401360,"owners_count":20609161,"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":["benchmark","http","load-testing","rust"],"created_at":"2024-10-29T11:09:40.164Z","updated_at":"2025-03-25T04:31:10.691Z","avatar_url":"https://github.com/k-nasa.png","language":"Rust","funding_links":["https://github.com/sponsors/k-nasa"],"categories":[],"sub_categories":[],"readme":"# goku\n\n![goku](https://user-images.githubusercontent.com/23740172/68545732-1ae00480-0413-11ea-8db9-3ceaafdb3b91.jpg)\n\n## Overview\n\n[![Actions Status](https://github.com/k-nasa/goku/workflows/CI/badge.svg)](https://github.com/k-nasa/goku/actions)\n[![crate-name at crates.io](https://img.shields.io/crates/v/goku.svg)](https://crates.io/crates/goku)\n\ngoku is a HTTP load testing application written in Rust\n\n(This is inspired by [vegeta](https://github.com/tsenart/vegeta)!)\n\n## Demo\n\n![goku](https://user-images.githubusercontent.com/23740172/68545671-92616400-0412-11ea-86f3-dba3a80f2227.gif)\n\n## Installation\n\n### Pre-compiled executables\n\nGet them [here](https://github.com/k-nasa/goku/releases)\n\n```\ncurl -L -o goku.tar.gz https://github.com/k-nasa/goku/releases/download/0.1.1/goku_x86_64-apple-darwin.tar.gz\ntar -zxvf goku.tar.gz\n\n# Move binary file to the path\n```\n\n### using homebrew\n\n```\nbrew install k-nasa/tap/goku\n```\n\n### using cargo\n\n```\ncargo install goku\n```\n\n#### Installation of cargo itself.\n\n```\ncurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh\n```\n\n## Usage\n\n```\ngoku 0.1.0\ngoku is a HTTP load testing application written in Rust\n\nUSAGE:\n    goku [SUBCOMMAND]\n\nFLAGS:\n    -h, --help       Prints help information\n    -V, --version    Prints version information\n\nSUBCOMMANDS:\n    help          Show help\n    kamehameha    Run load test [aliases: attack]\n```\n\n## Example\n\n### kamehameha\n\nSend 10,000 requests to 127.0.0.1:8080 in 10 parallel\n(There is an attack alias because hitting 'kamehameka' is awkward.)\n\n```\ngoku kamehameha -c 10 -n 10000 'http://127.0.0.1:8080'\n# or goku attack -c 10 -n 10000 'http://127.0.0.1:8080'\n```\n\nOutput in json and text is possible. When combined with jq, the display can be made beautiful.\n\n```\ngoku kamehameha -c 10 -n 10000 'http://127.0.0.1:8080' -o json | jq .\n\n{\n  \"errors\": [],\n  \"concurrency_level\": 10,\n  \"time_taken_test\": {\n    \"secs\": 2,\n    \"nanos\": 209216142\n  },\n  \"complete_requests\": 10000,\n  \"failed_requests\": 0,\n  \"total_transferred\": 1290000,\n  \"total_time\": {\n    \"secs\": 22,\n    .\n    .\n    .\n```\n\n## Contribution\n\n1. Fork it ( http://github.com/k-nasa/goku )\n2. Create your feature branch (git checkout -b my-new-feature)\n3. Commit your changes (git commit -am 'Add some feature')\n4. Push to the branch (git push origin my-new-feature)\n5. Create new Pull Request\n\n## License\n\n[MIT](https://github.com/k-nasa/goku/blob/master/LICENSE)\n\n## Author\n\n[k-nasa](https://github.com/k-nasa)\n\n[my website](https://k-nasa.me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk-nasa%2Fgoku","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk-nasa%2Fgoku","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk-nasa%2Fgoku/lists"}