go-snk

June 23, 2026 · View on GitHub

sink-logo

go-snk — the kitchen sink for clean Go projects

GitHub Tag Go Reference GitHub go.mod Go version Build Status Lint Status codecov Go report CodeQL GitHub License Contributors Mentioned in Awesome Go

go-snk is the library you pull into any Go project to clean it up and keep it clean. The name is short for kitchen sink — not because it does everything, but because it collects the small, type-safe helpers you keep reaching for across projects. No repeated loops, no one-off helpers scattered through your codebase, just consistent patterns for the things you do all the time.

Getting Started

Installation

go get github.com/SharkByteSoftware/go-snk@latest

Import only the packages you need:

package main

import "github.com/SharkByteSoftware/go-snk/slicex"
import "github.com/SharkByteSoftware/go-snk/mapx"

Documentation

PackageDescriptionDocs
slicexHelpers for filtering, mapping, searching, grouping, zipping, windowing, rotating, and numeric operations on slicesslicex.md
slicex/parallelParallel slice helpers for independent per-item workslicex.md
mapxHelpers for common map operations including partitioning, key mapping, counting by classifier, and merging mapsmapx.md
httpxLightweight helpers for HTTP requests with less boilerplatehttpx.md
httpxtestBuilder for httptest servers with canned responses, per-route handlers, and response shapinghttpxtest.md
jsonxHelpers for encoding and decoding JSON to and from readers, byte slices, and stringsjsonx.md
conditionalConcise helpers for branching and value selectionconditional.md
stringxHelpers for blank checks, fallback selection, truncation, wrapping, and padding stringsstringx.md
errorxHelpers for intentional error suppression, initialization panics, multi-target error checks, and reducing multiple errors to oneerrorx.md
containersReusable data structures including lists, sets, stacks, and queuesREADME.md
helpersGeneric utilities for pointer handling and zero value operationshelpers.md

For a full overview of the library, see docs/overview.md.

License

MIT License, see LICENSE for details