https://github.com/stephen-fox/goss
goss abstracts operating system specific sockets into a small API.
https://github.com/stephen-fox/goss
ipc unix-socket windows-pipe
Last synced: 4 months ago
JSON representation
goss abstracts operating system specific sockets into a small API.
- Host: GitHub
- URL: https://github.com/stephen-fox/goss
- Owner: stephen-fox
- License: mit
- Created: 2020-09-10T23:53:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-09-11T02:54:55.000Z (almost 5 years ago)
- Last Synced: 2025-02-23T12:29:59.982Z (4 months ago)
- Topics: ipc, unix-socket, windows-pipe
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goss
[![GoDoc][godoc-badge]][godoc]
[godoc-badge]: https://godoc.org/github.com/stephen-fox/goss?status.svg
[godoc]: https://godoc.org/github.com/stephen-fox/gossPackage goss abstracts operating system specific sockets into a small API.
It supports Unix sockets and Windows named pipes.## Special thanks
This project heavily relies on the work and ideas of the following people
and organizations:- [Brennan Macaig](https://github.com/brennan-macaig) for the library idea
- [Nate Finch](https://github.com/natefinch)
- [Microsoft's OSS maintainers](https://github.com/microsoft/go-winio/graphs/contributors)
- [Microsoft's go-winio project](https://github.com/microsoft/go-winio)