{"id":23039672,"url":"https://github.com/ckaznocha/busyindicator","last_synced_at":"2026-05-02T03:32:25.588Z","repository":{"id":57528352,"uuid":"44941752","full_name":"ckaznocha/busyIndicator","owner":"ckaznocha","description":"Various terminal busy indicators (eg. spinner, throbber, progress) for Go applications","archived":false,"fork":false,"pushed_at":"2015-10-29T03:00:23.000Z","size":160,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-08T14:13:41.195Z","etag":null,"topics":["animated-spinners","cli","terminal","throbber"],"latest_commit_sha":null,"homepage":null,"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/ckaznocha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-10-26T02:44:14.000Z","updated_at":"2023-02-15T20:15:58.000Z","dependencies_parsed_at":"2022-08-30T11:50:41.681Z","dependency_job_id":null,"html_url":"https://github.com/ckaznocha/busyIndicator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckaznocha%2FbusyIndicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckaznocha%2FbusyIndicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckaznocha%2FbusyIndicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckaznocha%2FbusyIndicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ckaznocha","download_url":"https://codeload.github.com/ckaznocha/busyIndicator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246911486,"owners_count":20853655,"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":["animated-spinners","cli","terminal","throbber"],"created_at":"2024-12-15T18:36:48.180Z","updated_at":"2026-05-02T03:32:25.503Z","avatar_url":"https://github.com/ckaznocha.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# busyIndicator\n\n[![Build Status](http://img.shields.io/travis/ckaznocha/busyIndicator.svg?style=flat)](https://travis-ci.org/ckaznocha/busyIndicator)\n[![License](http://img.shields.io/:license-mit-blue.svg)](http://ckaznocha.mit-license.org)\n\nThis is mostly a `for-fun` project as an excuse to mess with some things I don't\nnormally have a reason to use. There are other similar projects that may be more\nmature.\n\n--\n    import \"github.com/ckaznocha/busyIndicator\"\n\n\n## Usage\n\n```go\nvar (\n\n\t//Spin is a standard spinner\n\tSpin = []string{\"-\", \"\\\\\", \"|\", \"/\"}\n\n\t//Dot is an ellipsis sequence\n\tDot = []string{\"\", \".\", \"..\", \"...\"}\n\n\t//Grow is a . that grows up to be an O\n\tGrow = []string{\".\", \"ₒ\", \"ⱺ\", \"O\", \"ⱺ\", \"ₒ\", \".\"}\n)\n```\n\n#### func  Progress\n\n```go\nfunc Progress(\n\tmarks ProgressMarks,\n\tprogress chan float64,\n\tcancel chan bool,\n)\n```\nProgress starts a progress bar\n\n#### func  ProgressAnimated\n\n```go\nfunc ProgressAnimated(\n\tmarks ProgressMarks,\n\tspeed time.Duration,\n\tprogress chan float64,\n\tcancel chan bool,\n)\n```\nProgressAnimated starts an animated progress bar\n\n#### func  Throbber\n\n```go\nfunc Throbber(\n\tvals []string,\n\tspeed time.Duration,\n\tc chan bool,\n)\n```\nThrobber starts a throbber\n\n#### func  ThrobberPostfixed\n\n```go\nfunc ThrobberPostfixed(\n\tpostfix string,\n\tvals []string,\n\tspeed time.Duration,\n\tc chan bool,\n)\n```\nThrobberPostfixed starts a throbber with a given static postfix\n\n#### func  ThrobberPrefixed\n\n```go\nfunc ThrobberPrefixed(\n\tprefix string,\n\tvals []string,\n\tspeed time.Duration,\n\tc chan bool,\n)\n```\nThrobberPrefixed starts a throbber with a given static prefix\n\n#### func  ThrobberPrefixedAndPostfixed\n\n```go\nfunc ThrobberPrefixedAndPostfixed(\n\tprefix string,\n\tpostfix string,\n\tvals []string,\n\tspeed time.Duration,\n\tc chan bool,\n)\n```\nThrobberPrefixedAndPostfixed starts a throbber with a given static prefix and\npostfix\n\n#### type ProgressMarks\n\n```go\ntype ProgressMarks struct {\n\tCompleted  rune\n\tIncomplete rune\n}\n```\n\nProgressMarks holds the runes you'd like to use for your progress bar\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fckaznocha%2Fbusyindicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fckaznocha%2Fbusyindicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fckaznocha%2Fbusyindicator/lists"}