{"id":16308971,"url":"https://github.com/bayashi/goverview","last_synced_at":"2026-02-16T04:03:31.799Z","repository":{"id":153306584,"uuid":"626648581","full_name":"bayashi/goverview","owner":"bayashi","description":"`goverview` provides an overview as ASCII tree for a Golang project","archived":false,"fork":false,"pushed_at":"2024-12-31T06:35:59.000Z","size":40,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-17T11:03:05.919Z","etag":null,"topics":["go","golang","tool","treeview"],"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/bayashi.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":"2023-04-11T22:25:21.000Z","updated_at":"2024-12-31T06:34:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"6c3e850f-efe8-4f4f-aebf-cabc790fbb5d","html_url":"https://github.com/bayashi/goverview","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/bayashi/goverview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bayashi%2Fgoverview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bayashi%2Fgoverview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bayashi%2Fgoverview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bayashi%2Fgoverview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bayashi","download_url":"https://codeload.github.com/bayashi/goverview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bayashi%2Fgoverview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29499810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T03:57:51.541Z","status":"ssl_error","status_checked_at":"2026-02-16T03:55:59.854Z","response_time":115,"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":["go","golang","tool","treeview"],"created_at":"2024-10-10T21:19:19.935Z","updated_at":"2026-02-16T04:03:31.785Z","avatar_url":"https://github.com/bayashi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# goverview\n\n\u003ca href=\"https://github.com/bayashi/goverview/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/LICENSE-MIT-GREEN.png\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/bayashi/goverview/actions\"\u003e\u003cimg src=\"https://github.com/bayashi/goverview/workflows/main/badge.svg?_t=1681289447\"/\u003e\u003c/a\u003e\n\u003ca href=\"https://pkg.go.dev/github.com/bayashi/goverview\"\u003e\u003cimg src=\"https://pkg.go.dev/badge/github.com/bayashi/goverview.svg\" alt=\"Go Reference\"\u003e\u003c/a\u003e\n\n`goverview` provides an overview as ASCII tree for a Golang project.\n\n## Usage\n\n    $ goverview ~/go/src/github.com/bayashi/goverview\n    \n    ┌ goverview/\n    ├─┬ .github/\n    │ └─┬ workflows/\n    │   └── run-tests.yaml\n    ├── .gitignore\n    ├── LICENSE: License MIT\n    ├── README.md\n    ├──* arg.go: main\n    ├──* builder.go: main\n    ├──* cmd.go: main\n    ├─┬ fileinfo/\n    │ ├──* fileinfo.go: fileinfo\n    │ │     Struct: FileInfo\n    │ ├──* go.go: fileinfo\n    │ │     Func: GoInfo\n    │ ├──* gomod.go: fileinfo\n    │ │     Func: GoModInfo\n    │ └──* license.go: fileinfo\n    │       Func: LicenseInfo\n    ├── go.mod: go 1.19\n    ├── go.sum\n    └──* main.go: main\n\nYou can see also private stuff with `-a` option.\n\n    $ goverview ~/go/src/github.com/bayashi/goverview -a\n    \n    ┌ goverview/\n    ├─┬ .github/\n    │ └─┬ workflows/\n    │   └── run-tests.yaml\n    ├── .gitignore\n    ├── LICENSE: License MIT\n    ├── README.md\n    ├──* arg.go: main\n    │     struct: options\n    │     func: parseArgs\n    ├──* builder.go: main\n    │     struct: walkerArgs\n    │     func: fromLocal, validateDirPath, buildTree, isSkipPath, walkProcess, getFileInfo\n    ├──* cmd.go: main\n    │     func: putErr, putUsage, putHelp\n    ├─┬ fileinfo/\n    │ ├──* fileinfo.go: fileinfo\n    │ │     Struct: FileInfo\n    │ ├──* go.go: fileinfo\n    │ │     struct: organizer\n    │ │     Func: GoInfo\n    │ │     func: goInfoProcessIdent, buildDescriptions\n    │ ├──* gomod.go: fileinfo\n    │ │     Func: GoModInfo\n    │ └──* license.go: fileinfo\n    │       Func: LicenseInfo\n    ├── go.mod: go 1.19\n    ├── go.sum\n    └──* main.go: main\n          func: main, run\n\nFull options:\n\n    Usage: goverview [OPTIONS] DIR\n    Options:\n      -h, --help                 Show help (This message) and exit\n      -t, --hide-test            Hide contents of test files\n          --ignore stringArray   Ignore path to show if a given string would match\n      -a, --show-all             Show all stuff\n      -v, --version              Show version and build info and exit\n\n## Installation\n\n    go install github.com/bayashi/goverview@latest\n\n## License\n\nMIT License\n\n## Author\n\nDai Okabayashi: https://github.com/bayashi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbayashi%2Fgoverview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbayashi%2Fgoverview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbayashi%2Fgoverview/lists"}