{"id":34129255,"url":"https://github.com/buzzer-re/gofast","last_synced_at":"2026-03-12T06:02:23.847Z","repository":{"id":47306843,"uuid":"323477489","full_name":"buzzer-re/gofast","owner":"buzzer-re","description":"A HTTP accelerator using concurrent programming","archived":false,"fork":false,"pushed_at":"2021-09-15T20:13:13.000Z","size":3728,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-20T08:50:06.026Z","etag":null,"topics":["golang","http","http-accelerator","utilities"],"latest_commit_sha":null,"homepage":"","language":"Go","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/buzzer-re.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-22T00:12:26.000Z","updated_at":"2023-09-13T02:56:34.000Z","dependencies_parsed_at":"2022-08-27T19:01:14.272Z","dependency_job_id":null,"html_url":"https://github.com/buzzer-re/gofast","commit_stats":null,"previous_names":["aandersonl/gofast"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/buzzer-re/gofast","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buzzer-re%2Fgofast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buzzer-re%2Fgofast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buzzer-re%2Fgofast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buzzer-re%2Fgofast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/buzzer-re","download_url":"https://codeload.github.com/buzzer-re/gofast/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buzzer-re%2Fgofast/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30416737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T04:41:02.746Z","status":"ssl_error","status_checked_at":"2026-03-12T04:40:12.571Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["golang","http","http-accelerator","utilities"],"created_at":"2025-12-15T00:04:38.654Z","updated_at":"2026-03-12T06:02:23.839Z","avatar_url":"https://github.com/buzzer-re.png","language":"Go","readme":"# GoFast\n![gofast-CI](https://github.com/AandersonL/gofast/workflows/gofast-CI/badge.svg)\n![gofast-CD](https://github.com/AandersonL/gofast/workflows/gofast-CD/badge.svg)\n\nA HTTP downloader accelerator like [axel](https://github.com/axel-download-accelerator/axel), but faster.\n\n## What is this ?\n\ngofast is a http-only downloader that uses multiple connections through concurrency relying in [Range Request](https://tools.ietf.org/rfc/rfc7233.txt). It can burst your download speed just by spliting the whole GET request in ***N*** connections.\n\n## Features\n\n* Normal HTTP download if the server does not accept ranges\n* HTTP concurrency download\n* Control of how many parallel connections per host\n\n## Usage\nThere is a couple of options that you can use:\n\n\u003cpre\u003e\n$ gofast -h                                                                \nA HTTP downloader accelerator using concurrency\n\nUsage:\n  gofast [flags]\n\nFlags:\n  -h, --help            help for gofast\n  -n, --num-tasks int   Number of tasks to download (default 8)\n  -o, --output string   File output name\n\u003c/pre\u003e\n\nSimple usage:\n\n\u003cpre\u003e\n$ gofast https://releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso                                                         \nStarting concurrent download of ubuntu-20.04.1-desktop-amd64.iso\nDownloading 100% |...| (2.6/2.6 GB, 10.634 MB/s)          \nDownloaded in 4m9.761532636s\n\u003c/pre\u003e\n\nDownloading the same file using axel:\n\n\u003cpre\u003e\n$ axel -a https://releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso\nInitializing download: https://releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso\nFile size: 2785017856 bytes\nOpening output file ubuntu-20.04.1-desktop-amd64.iso.0\nStarting download\n\nConnection 3 unexpectedly closed\nConnection 0 finished\nConnection 1 finished\nConnection 2 finished\nConnection 1 finished\nConnection 3 finished\nConnection 0 finished\n\nDownloaded 2.59375 Gigabyte(s) in 4:32 minute(s). (9969.09 KB/s)\n\u003c/pre\u003e\n\n\n\n\n## Installing\n\nYou can go to [releases](https://github.com/AandersonL/gofast/releases) and grab the latest one, or manually build (Tested on Linux and Windows).\n\n\u003e $ git clone https://github.com/aandersonl/gofast \u0026\u0026 cd gofast \u0026\u0026 go build\n\nOr\n\n\u003e go get github.com/aandersonl/gofast\n\nMake sure to have GOROOT variable configured to the installation above works.\n\nAny bugs or enhancement feel free to open a issue or pull request!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuzzer-re%2Fgofast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuzzer-re%2Fgofast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuzzer-re%2Fgofast/lists"}