golib is a collection of common Go packages extracted for reuse across the author’s projects, notably frp and fft. It serves as a shared foundation for IO helpers, messaging formats, and other utilities that would otherwise be copy-pasted between codebases. The repository is versioned and published as Go modules, making it easy to import stable subsets into downstream applications. Individual subpackages cover concerns like streaming IO and JSON message structures, keeping implementations small and composable. By consolidating these pieces, the ecosystem around frp/fft benefits from consistent behavior and fewer bespoke dependencies. The code is released under the Apache-2.0 license, enabling broad adoption in both open and closed source contexts.
Features
- Shared Go modules used by frp and fft
- Focused subpackages for IO and messaging tasks
- Semantic versioning via Go modules for predictable builds
- Apache-2.0 licensing for flexible reuse
- Small, composable utilities rather than monolithic helpers
- Acts as a single dependency surface for multiple projects