Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Package colorstring provides functions for colorizing strings for terminal output.
go-github-com-tomasen-realip can be used to get client's real public IP, which is usually useful for logging HTTP server.
go-github-com-gosuri-uilive go library for updating terminal output in realtime. It provides a buffered io.Writer that is flushed at a timed interval. go-github-com-gosuri-uilive powers go-github-com-gosuri-uiprogress.
This library will help you allow two parties to generate a mutual secret key by using a weak key that is known to both beforehand (e.g. via some other channel of communication). This is a simple API for an implementation of password-authenticated key exchange (PAKE). This protocol is derived from Dan Boneh and Victor Shoup's cryptography book (pg 789, "PAKE2 protocol). I decided to create this library so I could use PAKE in my file-transfer utility, croc.
This package provides a very simple thread-safe progress bar which should work on every OS without problems. I needed a progressbar for croc and everything I tried had problems, so I made another one. In order to be OS agnostic I do not plan to support multi-line outputs.
The imap package provides an IMAP4rev1 library written in Go. It can be used to build IMAP clients and servers.
go-github-com-anmitsu-go-shlex provides a simple lexical analysis like the Unix shell.
Package imohash implements a fast, constant-time hash for files. It is based atop murmurhash3 and uses file size and sample data to construct the hash.
A speedy fuzzy matching package for Go inspired by the JavaScript library bevacqua/fuzzysearch.
Super-Isolated Elliptic Curve Implementation in Go
Small library for executing an ffprobe process on a given file and getting an easy to use struct representing the returned ffprobe data.
SOCKS5 server in Golang
SJSON is a Go package that provides a very fast and simple way to set a value in a json document.
Package poller is a file-descriptor multiplexer. It allows concurent Read and Write operations from and to multiple file-descriptors without allocating one OS thread for every blocked operation. It operates similarly to Go's netpoller (which multiplexes network connections) without requiring special support from the Go runtime. It can be used with tty devices, character devices, pipes, FIFOs, and any file-descriptor that is poll-able (can be used with select(2), epoll(7), etc.) In addition, package poller allows the user to set timeouts (deadlines) for read and write operations, and also allows for safe cancelation of blocked read and write operations; a Close from another go-routine safely cancels ongoing (blocked) read and write operations.
go-github-com-kyokomi-emoji is a library for displaying emojis to the terminal.
Is provides a quick, clean and simple framework for writing Go tests.
Work in Progress. This still needs a lot of help to be complete, or even usable!
go-github-com-gosuri-uiprogress is go library to render progress bars in terminal applications.
Simplistic, opinionated logging for Golang.
Package cli provides a minimal framework for creating and organizing command line Go applications.
This package provides a logger in Go.
go-github-com-klauspost-pgzip implements reading and writing of gzip format compressed files, as specified in RFC 1952.
go-github-com-hashicorp-errwrap is a package that formalizes the pattern of wrapping errors and checking if an error contains another error.
disintegration-imaging provides basic image processing functions such as resize, rotate, crop, brightness/contrast, adjustments, etc.