https://github.com/arm-software/embedded-development-services-client-utils
Helpers and utilities for Golang HTTP clients using our embedded development online services
https://github.com/arm-software/embedded-development-services-client-utils
arm-tools client-library golang-library online-services utilities utility-library
Last synced: 4 months ago
JSON representation
Helpers and utilities for Golang HTTP clients using our embedded development online services
- Host: GitHub
- URL: https://github.com/arm-software/embedded-development-services-client-utils
- Owner: ARM-software
- License: apache-2.0
- Created: 2022-12-01T15:22:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-13T15:15:11.000Z (4 months ago)
- Last Synced: 2025-06-14T21:08:10.425Z (4 months ago)
- Topics: arm-tools, client-library, golang-library, online-services, utilities, utility-library
- Language: Go
- Homepage:
- Size: 373 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Embedded development services HTTP client utilities
[](https://golang.org/)
[](https://opensource.org/licenses/Apache-2.0)
[](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client-utils/utils)
[](https://goreportcard.com/report/github.com/ARM-software/embedded-development-services-client-utils/utils)
[](https://bestpractices.coreinfrastructure.org/projects/9086)
## Overview
This repository contains an HTTP client golang utilities for communicating with Arm Embedded development services. It was initially developed for numerous projects at Arm, including some running in production, in order to apply the DRY principle.Few helpers may be themselves leveraging 3rd party libraries.
*Maintainers:* @ARM-software/golang-utils-admin
## Using this libraryTo use this library, add the following line to your `go.mod`:
```
require (
github.com/ARM-software/embedded-development-services-client-utils/utils latest
...
)
```## Releases
For release notes and a history of changes of all **production** releases, please see the following:
- [Changelog](CHANGELOG.md)
## Project Structure
The follow described the major aspects of the project structure:
- `docs/` - Code reference documentation.
- `utils/` - Go project source files.
- `changes/` - Collection of news files for unreleased changes.## Getting Help
- For interface definition and usage documentation, please see [Reference Pages](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client-utils/utils).
- For a list of known issues and possible workarounds, please see [Known Issues](KNOWN_ISSUES.md).
- To raise a defect or enhancement please use [GitHub Issues](https://github.com/ARM-software/embedded-development-services-client-utils/issues) or [GitHub discussions](https://github.com/ARM-software/embedded-development-services-client-utils/discussions).## Contributing
- We are committed to fostering a welcoming community, please see our
[Code of Conduct](CODE_OF_CONDUCT.md) for more information.
- For ways to contribute to the project, please see the [Contributions Guidelines](CONTRIBUTING.md)
- For a technical introduction into developing this package, please see the [Development Guide](DEVELOPMENT.md)