{"id":28710846,"url":"https://github.com/arm-software/golang-utils","last_synced_at":"2026-04-01T17:26:06.868Z","repository":{"id":38084166,"uuid":"393377389","full_name":"ARM-software/golang-utils","owner":"ARM-software","description":"Helpers and utilities for Golang in order to do actions not available in the standard library.","archived":false,"fork":false,"pushed_at":"2025-06-06T08:41:56.000Z","size":63687,"stargazers_count":33,"open_issues_count":1,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-06T09:28:03.367Z","etag":null,"topics":["golang","golang-library","golang-module","helpers","utilities"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ARM-software.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-08-06T12:57:47.000Z","updated_at":"2025-06-06T08:41:58.000Z","dependencies_parsed_at":"2023-12-18T12:31:49.216Z","dependency_job_id":"bebfd2b9-bcaf-4012-bc12-9a9bd0a55c2c","html_url":"https://github.com/ARM-software/golang-utils","commit_stats":null,"previous_names":[],"tags_count":302,"template":false,"template_full_name":null,"purl":"pkg:github/ARM-software/golang-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ARM-software%2Fgolang-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ARM-software%2Fgolang-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ARM-software%2Fgolang-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ARM-software%2Fgolang-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ARM-software","download_url":"https://codeload.github.com/ARM-software/golang-utils/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ARM-software%2Fgolang-utils/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259884525,"owners_count":22926446,"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":["golang","golang-library","golang-module","helpers","utilities"],"created_at":"2025-06-14T21:08:24.315Z","updated_at":"2026-04-01T17:26:06.860Z","avatar_url":"https://github.com/ARM-software.png","language":"Go","readme":"\u003c!--\nCopyright (C) 2020-2022 Arm Limited or its affiliates and Contributors. All rights reserved.\nSPDX-License-Identifier: Apache-2.0\n--\u003e\n# Golang utilities\n\n[![Go Badge](https://img.shields.io/badge/go-v1.25-blue)](https://golang.org/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![CI](https://github.com/ARM-software/golang-utils/actions/workflows/ci.yml/badge.svg)](https://github.com/ARM-software/golang-utils/actions/workflows/ci.yml)\n[![Go Reference](https://pkg.go.dev/badge/github.com/ARM-software/golang-utils/utils.svg)](https://pkg.go.dev/github.com/ARM-software/golang-utils/utils)\n[![Documentation](https://badgen.net/badge/Documentation/GitHub%20Pages/blue?icon=github)](https://arm-software.github.io/golang-utils)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ARM-software/golang-utils)](https://goreportcard.com/report/github.com/ARM-software/golang-utils)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/6531/badge)](https://bestpractices.coreinfrastructure.org/projects/6531)\n![Scorecard](https://img.shields.io/ossf-scorecard/github.com/ARM-software/golang-utils?label=openssf%20scorecard\u0026style=flat)\n\n## Overview\n\nThis repository contains various helpers and utilities for Golang in order to do actions not available in the standard library.\nIt was initially developed for numerous projects at Arm, including some running in production, in order to apply the DRY principle.\n\nFew helpers may be themselves leveraging 3rd party libraries.\n\n*Maintainers:* @ARM-software/golang-utils-admin\n\n## Using this library\n\nTo use this library, add the following line to your `go.mod`:\n\n```go\nrequire (\n    github.com/ARM-software/golang-utils/utils latest\n    ...\n)\n```\n\n## Releases\n\nFor release notes and a history of changes of all **production** releases, please see the following:\n\n- [Changelog](CHANGELOG.md)\n\n## Project Structure\n\nThe follow described the major aspects of the project structure:\n\n- `docs/` - Code reference documentation.\n- `utils/` - Go project source files.\n- `changes/` - Collection of news files for unreleased changes.\n\n## Getting Help\n\n- For interface definition and usage documentation, please see [GitHub Pages](https://arm-software.github.io/golang-utils).\n- For a list of known issues and possible workarounds, please see [Known Issues](KNOWN_ISSUES.md).\n- To raise a defect or enhancement please use [GitHub Issues](https://github.com/ARM-software/golang-utils/issues) or [GitHub discussions](https://github.com/ARM-software/golang-utils/discussions).\n\n## Contributing\n\n- We are committed to fostering a welcoming community, please see our\n  [Code of Conduct](CODE_OF_CONDUCT.md) for more information.\n- For ways to contribute to the project, please see the [Contributions Guidelines](CONTRIBUTING.md)\n- For a technical introduction into developing this package, please see the [Development Guide](DEVELOPMENT.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farm-software%2Fgolang-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farm-software%2Fgolang-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farm-software%2Fgolang-utils/lists"}