noise: A decentralized P2P networking stack written in Go.

noise is an opinionated, easy-to-use P2P network stack for decentralized applications, and cryptographic protocols written in Go. noise is made to be minimal, robust, developer-friendly, performant, secure, and cross-platform across multitudes of …

gotty: Share your terminal as a web application

GoTTY is a simple command line tool that turns your CLI tools into web applications. Homebrew Installation Usage Run gotty with your preferred command as its arguments (e.g. gotty top). By default, GoTTY …

Ginkgo: BDD testing in Golang

Ginkgo is a BDD-style Go testing framework built to help you efficiently write expressive and comprehensive tests. It is best paired with the Gomega matcher library but is designed to be matcher-agnostic. Feature …

Go: generation of Static Single Assignment

Static single assignment form In compiler design, static single assignment form (often abbreviated as SSA form or simply SSA) is a property of an intermediate representation (IR), which requires that each variable is assigned exactly once, and every variable …