blob: 92f95f093f3b6dec797642f6c5f4e7d62c43413f [file] [log] [blame] [view]
Andrew Gerrand5bc444d2014-12-10 11:35:11 +11001# Indexes and search engines
2
3These sites provide indexes and search engines for Go packages:
4
5 * [godoc.org](http://godoc.org/)
6 * [go-search](http://go-search.org/)
7 * [gowalker](http://gowalker.org/)
8 * [Sourcegraph](https://sourcegraph.com/)
9
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110010## Dead projects
11
nathanyed6b8a02014-12-10 22:48:52 -080012If you find a project in this list that is dead or broken, please either mark it as such or mention it in the #go-nuts IRC channel.
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110013
14# Table of Contents
15|(TODO: Add table of contents.)|
16|:-----------------------------|
17
18## Astronomy
19
20 * [gonova](https://github.com/pebbe/gonova) - A wrapper for libnova -- Celestial Mechanics, Astrometry and Astrodynamics Library
21 * [meeus](https://github.com/soniakeys/meeus) - Implementation of "Astronomical Algorithms" by Jean Meeus
22 * [novas](https://github.com/pebbe/novas) - Interface to the Naval Observatory Vector Astrometry Software (NOVAS)
23 * [go-fits](https://github.com/siravan/fits) - FITS (Flexible Image Transport System) format image and data reader
24
25## Build Tools
26
27 * [colorgo](https://github.com/songgao/colorgo) - Colorize go build output
Dave Day0d6986a2014-12-10 15:02:18 +110028 * [dogo](https://github.com/liudng/dogo) - Monitoring changes in the source file and automatically compile and run (restart)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110029 * [fileembed-go](https://bitbucket.org/rj/fileembed-go/) - This is a command-line utility to take a number of source files, and embed them into a Go package
30 * [gb](http://github.com/skelterjohn/go-gb) - A(nother) build tool for go, with an emphasis on multi-package projects
31 * [GG](http://www.manatlan.com/page/gg) - A build tool for Go in Go
32 * [go-pkg-config](https://github.com/psilva261/go-pkg-config) - lightweight clone of pkg-config
33 * [godag](http://code.google.com/p/godag/) - A frontend to the Go compiler collection
34 * [goenv](https://bitbucket.org/ymotongpoo/goenv) - goenv provides Go version and Go workspace management tools
35 * [goscons](https://github.com/alberts/goscons) - Another set of SCons builders for Go
36 * [gotgo](https://github.com/droundy/gotgo) - An experimental preprocessor to implement 'generics'
37 * [goxc](https://github.com/laher/goxc) - A build tool with a focus on cross-compiling, packaging, versioning and distribution
38 * [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions
39 * [SCons Go Tools](https://launchpad.net/sconsgo) - A collection of builders that makes it easy to compile Go projects in SCons
40
41## Caching
42
43 * [cache2go](https://github.com/muesli/cache2go) - A caching library with expiration capabilities and access counters
44 * [go-cache](http://patrickmylund.com/projects/go-cache/) - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications
45 * [gomemcache](https://github.com/kklis/gomemcache) - a memcached client
46 * [gomemcached](https://github.com/dustin/gomemcached) - A memcached server in go
47 * [groupcache](https://github.com/golang/groupcache) - Caching and cache-filling library, intended as a replacement for memcached in many cases
48 * [libmemcache](https://github.com/valyala/ybc/tree/master/libs/go/memcache) - Fast client and server libraries speaking memcache protocol
49 * [memcache](https://github.com/smallfish/memcache) - go memcached client, forked from YouTube Vitess
50 * [memcached](https://github.com/valyala/ybc/tree/master/apps/go/memcached) - Fast memcache server, which supports persistence and cache sizes exceeding available RAM
51 * [memcached-bench](https://github.com/valyala/ybc/tree/master/apps/go/memcached-bench) - Benchmark tool for memcache servers
52 * [YBC bindings](https://github.com/valyala/ybc/tree/master/bindings/go/ybc) - Bindings for YBC library providing API for fast in-process blob cache
53 * [go-slab](https://github.com/couchbaselabs/go-slab) - Slab allocator for go.
54
55## Cloud Computing
56
57 * [Docker](http://docker.io) - The Linux container runtime. Developed by dotCloud.
58 * [gocircuit](http://gocircuit.org) - A distributed operating system that sits on top of the traditional OS on multiple machines in a datacenter deployment. It provides a clean and uniform abstraction for treating an entire hardware cluster as a single, monolithic compute resource. Developed by Tumblr.
59 * [gosync](https://github.com/brettweavnet/gosync) - A package for syncing data to and from S3.
60 * [juju](https://juju.ubuntu.com) - Orchestration tool (deployment, configuration and lifecycle management), developed by Canonical.
61 * [ShipBuilder](http://shipbuilder.io) - ShipBuilder is a minimalist open source platform as a service, developed by Jay Taylor.
62 * [Tsuru](http://www.tsuru.io/) - Tsuru is an open source polyglot cloud computing platform as a service (PaaS), developed by Globo.com.
63 * [swift](https://github.com/ncw/swift) - Go language interface to Swift / Openstack Object Storage / Rackspace cloud files
64
65## Command-line Option Parsers
66
67 * [argcfg](http://code.google.com/p/goargcfg/) - Use reflection to populate fields in a struct from command line arguments
68 * [cobra](http://github.com/spf13/cobra) - A commander for modern go CLI interactions supporting commands & POSIX/GNU flags
69 * [command](https://github.com/rakyll/command) - Add subcommands to your CLI, provides help and usage guide.
70 * [getopt](https://github.com/timtadh/getopt) - Yet Another getopt Library for Go. This one is like Python's.
71 * [getopt](http://code.google.com/p/getopt) - full featured traditional (BSD/POSIX getopt) option parsing in Go style
72 * [gnuflag](https://launchpad.net/gnuflag) - GNU-compatible flag parsing; substantially compatible with flag.
73 * [go-flags](https://github.com/jessevdk/go-flags) - command line option parser for go
74 * [go-options](https://github.com/gaal/go-options) - A command line parsing library for Go
75 * [goopt](https://github.com/droundy/goopt) - a getopt clone to parse command-line flags
76 * [options](https://github.com/fd/options/) - Self documenting CLI options parser
77 * [opts.go](http://opts-go.googlecode.com/) - lightweight POSIX- and GNU- style option parsing
78 * [pflag](https://github.com/ogier/pflag) - Drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags.
79 * [subcommands](https://github.com/maruel/subcommands) - A concurrent, unit tested, subcommand library
80 * [go-commander](https://code.google.com/p/go-commander) - Simplify the creation of command line interfaces for Go, with commands and sub-commands, with argument checks and contextual usage help. Forked from the "go" tool code.
81 * [uggo](https://github.com/laher/uggo) - Yet another option parser offering gnu-like option parsing. This one wraps (embeds) flagset. It also offers rudimentary pipe-detection (commands like ls behave differently when being piped to).
82
83## Command-line Tools
84
85 * [GoPasswordCreator](https://github.com/d3xter/GoPasswordCreator) - A small tool, which creates random passwords
86 * [gich](http://bitbucket.org/jpoirier/gich) - A cross platform which utility written in Go
87 * [gocreate](https://bitbucket.org/llg/gocreate/) - Command line utility that create files from templates.
88 * [gojson](https://github.com/ChimeraCoder/gojson) - Command-line tool for manipulating JSON for use in developing Go code.
89 * [jsonpp](http://jmhodges.github.com/jsonpp/) - A fast command line JSON pretty printer.
90 * [passhash](https://github.com/gebi/passhash) - Command-line utility to create secure password hashes
91 * [pwdgen](https://github.com/chai2010/pwdgen/) - A small tool, which generate human password, written in Go.
seanpont02f6ff02014-12-14 19:49:30 -080092 * [passman](https://github.com/seanpont/passman) - A command-line password manager
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110093 * [tecla](https://github.com/michaelmacinnis/tecla) - Command-line editing library
94 * [DevTodo2](https://github.com/alecthomas/devtodo2) - A small command-line per-project task list manager.
95 * [gssh](https://github.com/syamp/gssh) - A simple command line utility to run ssh concurrently across many hosts
96 * [coshell](https://github.com/gdm85/coshell) - A drop-in replacement for GNU 'parallel'.
97
98## Compression
99
100 * [dgolzo](https://github.com/dgryski/dgolzo) - LZO bindings
101 * [dictzip](https://github.com/pebbe/dictzip) - A reader and writer for files in the random access ` dictzip ` format
102 * [fast-archiver](https://github.com/replicon/fast-archiver) - Alternative archiving tool with fast performance for huge numbers of small files
103 * [gbacomp](https://github.com/salviati/gbacomp) - A Go library to (de)compress data compatible with GBA BIOS
104 * [go-lz4](https://github.com/bkaradzic/go-lz4) - Port of LZ4 lossless compression algorithm to Go.
105 * [go-lzss](https://github.com/salviati/go-lzss) - Implementation of LZSS compression algorithm in Go
106 * [go-sevenzip](https://github.com/salviati/go-sevenzip) - Package sevenzip implements access to 7-zip archives (wraps C interface of LZMA SDK)
107 * [go-zip](https://github.com/hailiang/go-zip) - A wrapper around C library libzip, providing ability to modify existing ZIP archives.
108 * [lzma](http://code.google.com/p/lzma/) - compress/lzma package for Go
109 * [snappy-go](http://code.google.com/p/snappy-go/) - Google's Snappy compression algorithm in Go
110 * [yenc](https://github.com/chrisfarms/yenc) - yenc decoder package
111 * [zappy](https://github.com/cznic/zappy) - Package zappy implements the zappy block-based compression format. It aims for a combination of good speed and reasonable compression.
112
113## Configuration File Parsers
114
115 * [flagfile](https://github.com/spacemonkeygo/flagfile) - Adds parsing and serialization support to the standard library flag package (adds a --flagfile option)
116 * [gcfg](http://code.google.com/p/gcfg/) - read INI-style configuration files into Go structs; supports user-defined types and subsections
117 * [globalconf](https://github.com/rakyll/globalconf) - Effortlessly persist to and read flag values from an ini config file
118 * [goconf](http://code.google.com/p/goconf/) - a configuration file parser
119 * [viper](http://github.com/spf13/viper) - a complete configuration solution supporting YAML, TOML & JSON and integration with command line flags
120 * [toml](http://github.com/mojombo/toml) :
121 * [go-toml](http://github.com/pelletier/go-toml) - Go library for the TOML language
122 * [go-toml-config](http://github.com/stvp/go-toml-config) - TOML-based config for Go
123 * [tom-toml](https://github.com/achun/tom-toml) - TOML parser for Go, support comments/formatter/apply.
124 * [toml](http://github.com/BurntSushi/toml) - TOML parser for Go with reflection
125 * [toml-go](http://github.com/laurent22/toml-go) - An easy-to-use Go parser for the Toml format
126 * [gp-config](https://github.com/cbonello/gp-config) - Subset of TOML syntax with basic and reflection APIs
127 * yaml :
128 * [yaml](http://github.com/go-yaml/yaml) - YAML support for the Go language, by Canonical
129 * [goyaml](http://goyaml.googlecode.com/) - A port of LibYAML to Go
130
131## Console User Interface
132
133 * [ansi](https://github.com/mgutz/ansi) - Easily create ansi escape code strings and closures to fomat, color console output
134 * [go-ansiout](https://github.com/tlorens/go-ansiout) - Another ANSI escape code sequence tool for use with command-line applications.
135 * [ansiterm](https://github.com/hotei/ansiterm) - pkg to drive text-only consoles that respond to ANSI escape sequences
136 * [gnureadline](https://code.google.com/p/go-gnureadline) - GNU Readline bindings
137 * [go.linenoise](https://github.com/GeertJohan/go.linenoise) - Linenoise bindings (simple and easy readline with prompt, optional history, optional tab completion)
138 * [go-stfl](https://github.com/akrennmair/go-stfl) - a thin wrapper around STFL, an ncurses-based widget toolkit
139 * [gockel](https://github.com/akrennmair/gockel) - a Twitter client for text terminals
140 * [gocurse](https://github.com/jabb/gocurse) - Go bindings for NCurses
141 * [gocurses](https://github.com/tncardoso/gocurses) - NCurses wrapper
142 * [goncurses](http://code.google.com/p/goncurses/) - An ncurses library, including the form, menu and panel extensions
143 * [gopass](https://code.google.com/p/gopass/) - Allows typing of passwords without echoing to screen
144 * [go-ibgetkey](https://github.com/tlorens/go-ibgetkey) - "hot key" type user input package for use in processing keystrokes in command-line applications.
145 * [igo](https://bitbucket.org/binet/igo) - A simple interactive Go interpreter built on exp/eval with some readline refinements
146 * [oh](https://github.com/michaelmacinnis/oh) - A Unix shell written in Go
147 * [pty](https://github.com/kr/pty) - obtain pseudo-terminal devices
148 * [go-pullbarz](https://github.com/tlorens/go-pullbarz) - Fancy "light bar" menus like in Lotus 123 from the DOS days. Dependent on go-ibgetkey and go-ansiout.
149 * [termbox-go](https://github.com/nsf/termbox-go) - A minimalist alternative to ncurses to build terminal-based user interfaces
150 * [termios](http://bitbucket.org/taruti/termios) - Terminal support
151 * [termon](http://termon.googlecode.com/) - Easy terminal-control-interface for Go.
152 * [go.sgr](https://github.com/foize/go.sgr) - Terminal/console colors and text decoration (bold,underlined,etc).
153 * [go-web-shell](https://github.com/matiasinsaurralde/go-web-shell) - Remote web shell, implements a net/http server.
154
155## Cryptography
156
157 * [BLAKE2b](https://github.com/dchest/blake2b) - Go implementation of BLAKE2b hash function
158 * [cryptoPadding](https://github.com/apexskier/cryptoPadding) - Block padding schemes implemented in Go
159 * [dkeyczar](https://github.com/dgryski/dkeyczar) - Go port of Google'e Keyczar cryptography library
160 * [dkrcrypt](https://github.com/dgryski/dkrcrypt) - Korean block ciphers: SEED and HIGHT
161 * [dskipjack](https://github.com/dgryski/dskipjack) - Go implementation of the SKIPJACK encryption algorithm
162 * [go-ed25519](https://github.com/tendermint/go-ed25519) - CGO bindings for Floodberry's ed25519-donna. Fast batch verification.
163 * [go-hc128](https://github.com/tomfitzhenry/go-hc128) - Go implementation of HC-128, an eSTREAM stream cipher
164 * [GoSkein](https://github.com/wernerd/Skein3Fish/tree/master/go) - Implementation of Skein hash and Threefisch crypto for Go
165 * [keccak](https://github.com/ebfe/keccak) - A keccak (SHA-3) implementation
166 * [ketama.go](https://github.com/mncaudill/ketama.go) - libketama-style consistent hashing
167 * [kindi](https://github.com/uwedeportivo/Kindi) - encryption command line tool
168 * [openssl](https://github.com/spacemonkeygo/openssl) - openssl bindings for go
169 * [scrypt](https://code.google.com/p/go/source/browse?repo=crypto#hg%2Fscrypt) - Go implementation of Colin Percival's scrypt key derivation function
170 * [simpleaes](https://github.com/tadzik/simpleaes) - AES encryption made easy
171 * [SRP](https://code.google.com/p/go-srp/) - SRP: Secure Remote Password - Implementation in go
172 * [ssh.go](http://bitbucket.org/taruti/ssh.go) - SSH2 Client library
173 * [siphash](https://github.com/dchest/siphash) - SipHash: a fast short-input pseudorandom function
174 * [tiger](https://github.com/cxmcc/tiger) - Tiger cryptographic hashing algorithm
175 * [whirlpool](https://github.com/jzelinskie/whirlpool) - whirlpool cryptographic hashing algorithm
176 * [cryptogo](https://github.com/vgorin/cryptogo) - some useful cryptography-related functions, including paddings (PKCS7, X.923), PBE with random salt and IV
177 * [go-cs](https://github.com/akosela/go-cs) - concurrent ssh client.
178
179## Data Processing
180
181 * [Heka](https://github.com/mozilla-services/heka) - Real time data and log file processing engine.
182 * [gostatsd](https://github.com/kisielk/gostatsd) - Statsd server and library.
183 * [proto](https://github.com/eblume/proto) - Map/Reduce/Filter etc. for Go using channels as result streams.
184 * [regommend](https://github.com/muesli/regommend) - Recommendation engine.
185 * [rrd](https://github.com/ziutek/rrd) - Bindings for rrdtool.
186
187## Data Structures
188
189#### Lists
190
191 * [GoArrayList](https://github.com/PhilStephens/GoArrayList) - GoArrayList is a Go language substitute for the Java class ArrayList, with very nearly all features.
192 * [goskiplist](https://github.com/ryszard/goskiplist) - A skip list implementation in Go.
193 * [itreap](https://github.com/glenn-brown/itreap) - An immutable ordered list, internally a treap.
194 * [ListDict](https://bitbucket.org/matrixik/listdict/) - Python List and Dict for Go
195 * [skip](https://github.com/glenn-brown/skiplist) - A fast position-addressable ordered map and multimap.
196 * [skiplist](https://github.com/huandu/skiplist) - A skip list implementation. Highly customizable and easy to use.
197 * [Skiplist](https://github.com/glenn-brown/skiplist) - A fast indexable ordered multimap.
198
199#### Queues
200
201 * [fifo\_queue](https://github.com/yasushi-saito/fifo_queue) - Simple FIFO queue
202 * [go-priority-queue](https://code.google.com/p/go-priority-queue/) - An easy to use heap implementation with a conventional priority queue interface.
203 * [go.fifo](https://github.com/foize/go.fifo) - Simple auto-resizing thread-safe fifo queue.
204 * [gopqueue](https://github.com/nu7hatch/gopqueue) - Priority queue at top of container/heap
205 * [gringo](https://github.com/textnode/gringo) - A minimalist queue implemented using a stripped-down lock-free ringbuffer
206 * [figo](https://github.com/jasocox/figo) - A simple fifo queue with an optional thread-safe version.
207 * [queued](https://github.com/timtadh/queued) - A simple network queue daemon
208
209#### Graphs
210 * [goraph](https://github.com/gyuho/goraph) - Graph Visualization, Algorithms
211
212#### Sets
213 * https://github.com/deckarep/golang-set - A full thread-safe and unsafe set implementation for Go.
214
215#### Trees
216
217 * [b](https://github.com/cznic/b) - Package b implements B+trees with delayed page split/concat and O(1) enumeration. Easy production of source code for B+trees specialized for user defined key and value types is supported by a simple text replace.
218 * [btree](https://bitbucket.org/santucco/btree) - Package btree implements persistent B-trees with fixed size keys, http://en.wikipedia.org/wiki/Btree
219 * [btree](https://github.com/google/btree) - In-memory (not persistent) B-tree implementation, similar API to GoLLRB
220 * [go-avltree](https://code.google.com/p/go-avltree/) - AVL tree (Adel'son-Vel'skii & Landis) with indexing added
221 * [go-darts](https://github.com/awsong/go-darts) - Double-ARray Trie System for Go
222 * [go-stree](https://github.com/toberndo/go-stree) - A segment tree implementation for range queries on intervals
223 * [GoLLRB](https://github.com/petar/GoLLRB) - A Left-Leaning Red-Black (LLRB) implementation of 2-3 balanced binary search trees in Google Go
224 * [rbtree](https://github.com/yasushi-saito/rbtree) - Yet another red-black tree implementation, with a C++ STL-like API
225 * [rtreego](https://github.com/dhconnelly/rtreego) - an R-Tree library
226 * [gotree](https://github.com/gyuho/gotree) - Tree Visualization, Algorithms
227 * [gtreap](https://github.com/steveyen/gtreap) - Persistent treap implementation.
228 * [go-ibbs](https://github.com/jaekwon/go-ibbs) - Immutable AVL+ tree
liangx803ba7302014-12-16 05:39:28 -0800229 * [go-btree](https://github.com/liangx8/tree.git) - Simple balance tree implementation
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100230
231#### Other
232
233 * [asyncwr](https://github.com/yorhel/asyncwr) - Asynchronous, non-blocking, wrapper for io.Writer
234 * [bigendian](https://bitbucket.org/taruti/bigendian) - binary parsing and printing
235 * [collections](https://github.com/cosn/collections) - Several common data structures
236 * [data-structures](https://github.com/timtadh/data-structures) - A collection of data-structures (AVL Tree, B+Tree, Ternary Search Trie, Hash Table (Separate Chaining), Linear Hash Table)
237 * [deepcopy](http://bitbucket.org/taruti/deepcopy) - Make deep copies of data structures
238 * [dgobloom](https://github.com/dgryski/dgobloom) - A Bloom Filter implementation
239 * [epochdate](https://github.com/extemporalgenome/epochdate) - Compact dates stored as days since the Unix epoch
240 * [fsm](https://github.com/looplab/fsm) - Minimalistic state machine for use instead of booleans
241 * [go-algs/ed](https://github.com/daviddengcn/go-algs) - Generalized edit-distance implementation
242 * [go-algs/maxflow](https://github.com/daviddengcn/go-algs) - An energy minimization tool using max-flow algorithm.
243 * [go-extractor](https://github.com/salviati/go-extractor) - Go wrapper for GNU libextractor
244 * [go-maps](https://github.com/serge-hulne/go-maps) - Go maps generalized to interfaces
245 * [gohash](http://code.google.com/p/gohash/) - A simple linked-list hashtable that implements sets and maps
246 * [Gokogiri](https://github.com/moovweb/gokogiri) - A lightweight libxml wrapper library
247 * [GoNetCDF](https://bitbucket.org/ctessum/gonetcdf) - A wrapper for the NetCDF file format library
248 * [goop](https://github.com/losalamos/goop) - Dynamic object-oriented programming support for Go
249 * [goset](https://github.com/fatih/goset) - A simple, thread safe Set implementation
250 * [gotoc](https://github.com/dsymonds/gotoc) - A protocol buffer compiler written in Go
251 * [goxml](https://github.com/jbussdieker/golibxml) - A thin wrapper around libxml2
252 * [hyperloglog](https://github.com/clarkduvall/hyperloglog) - An implementation of the HyperLogLog and HyperLogLog++ algorithms for estimating cardinality of sets using constant memory.
253 * [itertools](https://github.com/xchapter7x/goutil) - Provides generic iteratable generator function along with functionality similar to the itertools python package.
254 * [jsonv](https://github.com/gima/jsonv) - A JSON validator
255 * [libgob](http://code.google.com/p/libgob/) - A low level library for generating gobs from other languages
256 * [Picugen](http://patrickmylund.com/projects/picugen/) - A general-purpose hash/checksum digest generator.
257 * [ps](https://github.com/mndrix/ps) - Persistent data structures
258 * [tribool](https://github.com/saschpe/tribool) - Ternary (tree-valued) logic for Go
259 * [Tuple](https://bitbucket.org/gotamer/tuple) - Tuple is a go type that will hold mixed types / values
260 * [vcard](https://bitbucket.org/llg/vcard) - Reading and writing vcard file in go. Implementation of RFC 2425 (A MIME Content-Type for Directory Information) and RFC 2426 (vCard MIME Directory Profile).
nathanyed6b8a02014-12-10 22:48:52 -0800261 * [x2j](https://github.com/clbanning/x2j) - Unmarshal XML doc into `map[string]interface{}` or JSON
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100262 * [xlsx](https://github.com/tealeg/xlsx) - A library to help with extracting data from Microsoft Office Excel XLSX files.
263
264## Databases and Storage
265
nathanyed6b8a02014-12-10 22:48:52 -0800266See also [[SQLDrivers page|SQLDrivers]].
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100267
268#### MongoDB
269
270 * [mgo](http://labix.org/mgo) - Rich MongoDB driver for Go
271
272#### MySQL
273
274 * [Go-MySQL-Driver](https://github.com/go-sql-driver/mysql) - A lightweight and fast MySQL-Driver for Go's database/sql package
275 * [MyMySQL](https://github.com/ziutek/mymysql) - MySQL Client API written entirely in Go.
276 * [vitess](http://code.google.com/p/vitess/) - Scaling MySQL databases for the web
277
278#### ODBC
279
280 * [go-odbc](https://github.com/weigj/go-odbc) - ODBC Driver for Go
281 * [odbc3-go](https://bitbucket.org/rj/odbc3-go/) - This package is wrapper around ODBC (version 3).
282
283#### PostgreSQL
284
285 * [go-libpq](https://github.com/jgallagher/go-libpq) - cgo-based Postgres driver for Go's database/sql package
286 * [go-pgsql](https://github.com/lxn/go-pgsql) - A PostgreSQL client library for Go
287 * [pgsql.go](https://github.com/jbarham/pgsql.go) - PostgreSQL high-level client library wrapper
288 * [pgx](https://github.com/JackC/pgx) - Go PostgreSQL driver that is compatible with database/sql and has native interface for more performance and features
289 * [pq](https://github.com/lib/pq) - Pure Go PostgreSQL driver for database/sql
290
291#### QL
292
293 * [ql](https://github.com/cznic/ql) - A pure Go embedded (S)QL database.
294
295#### Redis
296
297 * [Go-Redis](https://github.com/alphazero/Go-Redis) - Client and Connectors for Redis key-value store
298 * [godis](https://github.com/simonz05/godis) - Simple client for Redis
299 * [Tideland CGL Redis](http://code.google.com/p/tcgl/) - Powerful Redis client with pub/sub support.
300 * [Redigo](https://github.com/garyburd/redigo) - Go client for Redis.
301 * [redis](https://github.com/vmihailenco/redis) - Redis client for Go
302 * [go-redis](https://github.com/fiorix/go-redis) - Redis client built on the skeleton of gomemcache
303
304#### [RethinkDB](http://www.rethinkdb.com/)
305
306 * [rethinkgo](https://github.com/christopherhesse/rethinkgo) - Basic Go driver for RethinkDB
307
308#### SQLite
309
310 * [mattn's go-sqlite3](https://github.com/mattn/go-sqlite3) - sqlite3 driver conforming to the built-in database/sql interface
311 * [gosqlite](http://code.google.com/p/gosqlite/) - a trivial SQLite binding for Go.
312 * [gosqlite (forked)](https://github.com/gwenn/gosqlite) - A fork of gosqlite
313 * [gosqlite3](https://github.com/kuroneko/gosqlite3) - Go Interface for SQLite3
314 * [go-sqlite](https://github.com/mxk/go-sqlite) - A database/sql driver and standalone sqlite3 interface
315
316#### ORM
317 * [beedb](https://github.com/astaxie/beedb) - beedb is an ORM for Go. It lets you map Go structs to tables in a database
318 * [gorm](https://github.com/jinzhu/gorm) - An ORM library for Go, aims for developer friendly
319 * [gorp](https://github.com/coopernurse/gorp) - SQL mapper for Go
320 * [hood](https://github.com/eaigner/hood) - Database agnostic ORM for Go. Supports Postgres and MySQL.
321 * [qbs](https://github.com/coocood/qbs) - Query By Struct. Supports MySQL, PosgreSQL and SQLite3.
322 * [xorm](https://github.com/lunny/xorm) - A Simple and Powerful ORM for Go.
323 * [go-modeldb](https://github.com/jaekwon/go-modeldb) - A simple wrapper around sql.DB for struct support.
324
325#### Multiple wrappers
326
327 * [gosexy/db](http://gosexy.org/db) - an abstraction of wrappers for popular third party SQL and No-SQL database drivers.
328
329#### Key-Value-Stores
330
331 * [dbm](https://github.com/cznic/exp/tree/master/dbm) - Package dbm (WIP) implements a simple database engine, a hybrid of a hierarchical and/or a key-value one.
332 * [Diskv](https://github.com/peterbourgon/diskv) - Home-grown, disk-backed key-value store
333 * [etcd](https://github.com/coreos/etcd) - Highly-available key value store for shared configuration and service discovery
334 * [gocask](http://code.google.com/p/gocask/) - Key-value store inspired by Riak Bitcask. Can be used as pure go implementation of dbm and other kv-stores.
335 * [kv](http://github.com/cznic/kv) - Yet another key/value persistent store. Atomic operations, two phase commit, automatic crash recovery, ...
336 * [leveldb-go](http://code.google.com/p/leveldb-go/) - This is an implementation of the LevelDB key/value database.
337 * [levigo](https://github.com/jmhodges/levigo) - levigo provides the ability to create and access LevelDB databases.
338 * [persival](https://github.com/nu7hatch/persival) - Programatic, persistent, pseudo key-value storage
339 * [gkvlite](https://github.com/steveyen/gkvlite) - Pure go, simple, ordered, atomic key-value persistence based on append-only file format.
340
341#### NoSQL
342
343 * [tiedot](https://github.com/HouzuoGuo/tiedot) - A NoSQL document database engine using JSON for documents and queries; it can be embedded into your program, or run a stand-alone server using HTTP for an API.
344 * [ledisdb](https://github.com/siddontang/ledisdb) - A high performance NoSQL like Redis.
345
346#### Other
347
348 * [cabinet](https://bitbucket.org/ww/cabinet) - Kyoto Cabinet bindings for go
349 * [cass](https://github.com/araddon/cass) - Cassandra Client Lib
350 * [cdb.go](https://github.com/jbarham/cdb.go) - Create and read cdb ("constant database") files
351 * [CodeSearch](http://code.google.com/p/codesearch/) - Index and perform regex searches over large bodies of source code
352 * [couch-go](http://couch-go.googlecode.com) - newer maintained CouchDB database binding
353 * [couchgo](https://github.com/lancecarlson/couchgo) - The most feature complete CouchDB Adapter for Go. Modeled after couch.js.
354 * [dbxml](https://github.com/pebbe/dbxml) - A basic interface to Oracle Berkeley DB XML
355 * [Event Horizon](https://github.com/looplab/eventhorizon) - Toolkit for Command Query Responsibility Segregation and Event Sourcing (CQRS/ES)
356 * [go-db-oracle](https://code.google.com/p/go-db-oracle/) - GO interface to Oracle DB
357 * [go-notify](https://github.com/lenormf/go-notify) - GO bindings for the libnotify
358 * [go-rexster-client](https://github.com/sqs/go-rexster-client) - Go client for the [Rexster graph server](https://github.com/tinkerpop/rexster/wiki) (part of the [TinkerPop](http://www.tinkerpop.com/) suite of graph DB tools)
359 * [go-sphinx](https://github.com/yunge/gosphinx) - A sphinx client package for Go, for full text search.
360 * [go-wikiparse](https://github.com/dustin/go-wikiparse) - mediawiki dump parser for working with wikipedia data
361 * [gographite](https://github.com/amir/gographite) - statsd server in go (for feeding data to graphite)
362 * [gokabinet](https://github.com/fsouza/gokabinet) - Go bindings for Kyoto Cabinet DBM implementation
363 * [goprotodb](http://launchpad.net/goprotodb) - A binding to Berkeley DB storing records encoded as Protocol Buffers.
364 * [goriak](https://bitbucket.org/lateefj/goriak/overview) - Database driver for riak database (project homepage is now on bitbucket.org)
365 * [goriakpbc](https://github.com/tpjg/goriakpbc) - Riak driver using Riak's protobuf interface
366 * [gotyrant](https://github.com/patrickxb/gotyrant) - A Go wrapper for tokyo tyrant
367 * [hdfs](https://github.com/zyxar/hdfs) - go bindings for libhdfs
368 * [JGDB](http://www.robotamer.com/html/GoTamer/JGDB.html) - JGDB stands for Json Git Database
369 * [mig](https://github.com/jagregory/mig) - Simple SQL-based database migrations
370 * [mongofixtures](https://github.com/OwlyCode/mongofixtures) - A Go quick and dirty utility for cleaning MongoDB collections and loading fixtures into them.
371 * [Neo4j-GO](https://github.com/davemeehan/Neo4j-GO) - Neo4j REST Client in Go
372 * [neoism](https://github.com/jmcvetta/neoism) - Neo4j graph database client, including Cypher and Transactions support.
373 * [Optimus Cache Prime](http://patrickmylund.com/projects/ocp/) - Smart cache preloader for websites with XML sitemaps.
374 * [riako](https://github.com/jkassemi/riako) - High level utility methods for interacting with Riak databases
375 * [Weed File System](http://code.google.com/p/weed-fs/) - fast distributed key-file store
376 * [whisper-go](https://github.com/kisielk/whisper-go) - library for working with whisper databases
377 * [squirrel](https://github.com/lann/squirrel) - Fluent SQL generation for Go
378
379## Development Tools
380
381 * [cwrap](https://github.com/hailiang/cwrap) - Go wrapper (binding) generator for C libraries.
382 * [demand](https://github.com/tv42/demand) - Download, build, cache and run a Go app easily.
383 * [godev](https://github.com/kdar/godev) - Recompiles and runs your Go code on source change. Also watches all your imports for changes.
384 * [GoWatch](https://bitbucket.org/gotamer/gowatch) - GoWatch watches your dev folder for modified files, and if a file changes it restarts the process.
385 * [glib](https://github.com/ziutek/glib) - Bindings for GLib type system
386 * [gocog](https://github.com/natefinch/gocog) - A code generator that can generate code using any language
387 * [godiff](https://github.com/spcau/godiff) - diff file comparison tool with colour html output
388 * [syntaxhighlighter](https://github.com/sourcegraph/syntaxhighlight) - language-independent code syntax highlighting library
389 * [gonew](https://github.com/bmatsuo/gonew) - A tool to create new Go projects
390 * [go-play](https://code.google.com/p/go-play) - A HTML5 web interface for experimenting with Go code. Like http://golang.org/doc/play but runs on your computer
391 * [gorun](https://wiki.ubuntu.com/gorun) - Enables Go source files to be used as scripts.
392 * [go-spew](https://github.com/davecgh/go-spew) - Implements a deep pretty printer for Go data structures to aid in debugging
393 * [goven](https://github.com/kr/goven) - Easily copy code from another project into yours
394 * [gowatcher](https://github.com/nickjj/gowatcher) - Reload a specified go program automatically by monitoring a directory.
395 * [goweb](https://bitbucket.org/santucco/goweb) - Literate programming tools for Go based on CWEB by Donald Knuth and Silvio Levy.
396 * [hopwatch](https://github.com/emicklei/hopwatch) - simple debugger for Go
397 * [hsandbox](http://labix.org/hsandbox) - Tool for quick experimentation with Go snippets
398 * [Livedev](https://github.com/qrtz/livedev) - Livedev is a development proxy server that enables live code reloading.
399 * [liccor](https://github.com/gtalent/liccor) - A tool for updating license headers in Go source files
400 * [liteide](http://code.google.com/p/golangide/) - An go auto build tools and qt-based ide for Go
401 * [rerun](https://github.com/skelterjohn/rerun) - Rerun watches your binary and all its dependencies so it can rebuild and relaunch when the source changes.
402 * [trace](https://bitbucket.org/santucco/trace) - A simple debug tracing
403 * [godepgraph](https://github.com/kisielk/godepgraph) - Create a dependency graph for a go package
404 * [toggle](https://github.com/xchapter7x/toggle) - A feature toggle library with built in support for environment variable backed toggling. pluggable backing engine support.
405
406### Emacs Tags
407
408 * [egotags](http://bitbucket.org/scriptdevil/egotags/) - ETags generator
409 * [tago](https://github.com/AlexCombas/Tago) - Emacs TAGS generator for Go source
410 * [tago1](https://github.com/willoch/tago) - etags generator for go that builds with go 1
411
412## Distributed/Grid Computing
413
414 * [donut](https://github.com/dforsyth/donut) - A library for building clustered services in Go
415 * [locker](https://github.com/jagregory/locker) - A distributed lock service built on top of [etcd](https://github.com/coreos/etcd).
416 * [Skynet](https://github.com/bketelsen/skynet) - Skynet is distributed mesh of processes designed for highly scalable API type service provision.
417
418## Documentation
419
420 * [GoDoc.org](http://godoc.org/) - GoDoc.org generates documentation on the fly from source on Bitbucket, Github, Google Project Hosting and Launchpad.
421 * [Mango](http://code.google.com/p/mango-doc/) - Automatically generate unix man pages from Go sources
422 * [godocdown](https://github.com/robertkrimen/godocdown) - Format package documentation (godoc) as GitHub friendly Markdown
423 * [redoc](https://github.com/simonz05/redoc) - Commands documentation for Redis
424 * [sphinxcontrib-golangdomain](http://pypi.python.org/pypi/sphinxcontrib-golangdomain) - Sphinx domain for Go
425 * [test2doc](https://code.google.com/p/test2doc/) - Generate documentation for your go units from your unit tests.
426
427## Editors
428
429 * [Go conTEXT](http://www.tc33.org/go/go-programming-highlighter-for-context-editor/) - Highlighter plugin for the conTEXT editor
430 * [Google Go for Idea](http://plugins.intellij.net/plugin/?idea&id=5047) - Google Go language plugin for Intellij IDEA
431 * [go-gedit](http://code.google.com/p/go-gedit3-plugin/) - Google Go language plugin for gedit
432 * [goclipse](http://code.google.com/p/goclipse/) - An Eclipse-based IDE for Go.
433 * [godev](https://github.com/sirnewton01/godev) - Web-based IDE for the Go language
434 * [gofinder](https://github.com/mpl/gofinder) - (code) search tool for acme
435 * [golab](https://github.com/mb0/lab) - go local application builder - a web-based Go ide
436 * [tabby](https://github.com/mikhailt/tabby) - Source code editor
437 * [godit](https://github.com/nsf/godit) - A microemacs-like text editor written in Go.
438 * [ViGo](https://github.com/kisielk/vigo) - A vim-like text editor.
439 * [Conception](https://github.com/shurcooL/Conception) - Conception is an experimental research project, meant to become a modern IDE/Language package. [demo video](http://youtu.be/DNJ7HqlV55k)
440
441## Error handling
442
443 * [Space Monkey errors](https://github.com/spacemonkeygo/errors) - Go's missing errors library - stack capture, error hierarchies, error tags
444 * [errgo](https://github.com/juju/errgo) - Error tracing and annotation.
445 * [errors](https://github.com/juju/errors) - The juju/errors package provides an easy way to annotate errors without losing the original error context, and get a stack trace back out of the error for the locations that were recorded.
446
447## Encodings and Character Sets
448
449 * [form](https://github.com/ajg/form) - Complete bidirectional HTML form encoder & decoder (x-www-form-urlencoded) for arbitrary data (package encoding compatible)
450 * [Mahonia](http://code.google.com/p/mahonia/source/browse/) - Character-set conversion library in Go
451 * [base58](https://github.com/tv42/base58) - Human input-friendly base58 encoding
452 * [bencode-go](http://code.google.com/p/bencode-go/) - Encodeing and decoding the bencode format used by the BitTorrent peer-to-peer file sharing protocol
453 * [bsonrpc](https://github.com/skelterjohn/bsonrpc) - BSON codec for net/rpc
454 * [chardet](https://github.com/saintfish/chardet) - Charset detection library ported from ICU
455 * [charmap](https://github.com/disintegration/charmap) - Character encodings in Go
456 * [go-charset](http://code.google.com/p/go-charset/) - Conversion between character sets. Native Go.
457 * [go-simplejson](https://github.com/bitly/go-simplejson) - a Go package to interact with arbitrary JSON
458 * [go-xdr](https://github.com/davecgh/go-xdr) - Pure Go implementation of the data representation portion of the External Data Representation (XDR) standard protocol as specified in RFC 4506 (obsoletes RFC 1832 and RFC 1014).
459 * [gopack](https://github.com/joshlf13/gopack) - Bit-packing for Go
460 * [gobson](http://labix.org/gobson) - BSON (de)serializer
461 * [iconv-go](https://github.com/djimenez/iconv-go) - iconv wrapper with Reader and Writer
462 * [mimemagic](https://bitbucket.org/taruti/mimemagic) - Detect mime-types automatically based on file contents with no external dependencies
463 * [go-msgpack](https://github.com/ugorji/go-msgpack) - Comprehensive MsgPack library for Go, with pack/unpack and net/rpc codec support (DEPRECATED in favor of [codec](https://github.com/ugorji/go/tree/master/codec#readme) )
464 * [codec-msgpack-binc](https://github.com/ugorji/go/tree/master/codec#readme) High Performance and Feature-Rich Idiomatic Go Library providing encode/decode support for multiple binary serialization formats: [msgpack](http://www.msgpack.org)
465 * [msgpack](https://github.com/vmihailenco/msgpack) - Msgpack format implementation for Go
466 * [msgpack-json](https://github.com/tv42/msgpack-json) - Command-line utilities to convert between msgpack and json
467 * [storable](https://github.com/kdar/storable) - Write perl storable data
468 * [TNetstring](https://github.com/edsrzf/tnetstring-go) - tnetstrings (tagged Netstrings)
469 * [nnz](https://sourcegraph.com/github.com/sourcegraph/go-nnz) - String and Int primitives that serialize to JSON and SQL null
470 * [magicmime](https://github.com/rakyll/magicmime) -- Mime-type detection with Go bindings for libmagic
471
472## Games
473
474 * [bloxorz](https://github.com/YouriAckx/bloxorz) - Solver for bloxorz basic levels
475 * [ChessBuddy](https://github.com/tux21b/ChessBuddy) - Play chess with Go, HTML5, WebSockets and random strangers!
476 * [Fergulator](https://github.com/scottferg/Fergulator) - An NES emulator, using SDL and OpenGL
477 * [Gongo](https://github.com/skybrian/Gongo) - A program written in Go that plays Go
478 * [Ludo Game](http://ludo.abiosoft.net) - Ludo Board game powered by Go on Appengine
479 * [godoku](http://code.google.com/p/kylelemons/source/browse?repo=godoku) - Go Sudoku Solver - example of "share by communicating"
480 * [gospeccy](https://github.com/remogatto/gospeccy) - A ZX Spectrum 48k Emulator
481 * [Bampf](https://github.com/gazed/bampf) - Arcade style game based on the Vu 3D engine.
482 * [FlappyBird](https://github.com/himanshushekhar/golang-flappybirdclone) - A simple flappy bird clone written in golang.
483
484## GIS
485
486 * [go-gdal](https://code.google.com/p/go-gdal/) - Go bindings for GDAL
487 * [go-liblas](https://code.google.com/p/go-liblas/) - Go bindings for libLAS
488 * [go-proj-4](https://github.com/pebbe/go-proj-4) - An interface to the Cartographic Projections Library PROJ.4
489 * [gogeos](http://paulsmith.github.io/gogeos/) - Go library for spatial data operations and geometric algorithms
490 * [lvd.go](http://code.google.com/p/lvd.go) - dense set, byte trie, reed solomon encoding, wgs84 geodesics
491 * [polyline](https://github.com/twpayne/gopolyline) - Google Maps polyline encoding and decoding
492 * [geom](https://github.com/twpayne/gogeom) - Open Geo Consortium-style geometries with native Go GeoJSON, WKB, and WKT encoding and decoding (work-in-progress)
493 * [go.geo](https://github.com/paulmach/go.geo) - Geometry/geography library targeted at online mapping
494 * [go.geojson](https://github.com/paulmach/go.geojson) - Marshalling and Unmarshalling of GeoJSON objects
495
496## Go Implementations
497
498 * [Express Go](http://www.unicorn-enterprises.com/express_go.html) - Interpreted Go implementation for Windows
499 * [llgo](https://github.com/axw/llgo) - LLVM-based Go compiler, written in Go (work-in-progress)
500
501## Graphics and Audio
502
503 * [AnsiGo](https://github.com/fcambus/ansigo) - Simple ANSi to PNG converter written in pure Go
504 * [Arclight](http://www.angryredplanet.com/exh/arclight/) - Arclight is a tool for rendering images
505 * [Go-OpenGL](https://github.com/banthar/Go-OpenGL) - Go bindings for OpenGL
506 * [GoGL](https://github.com/chsc/GoGL) - OpenGL binding generator
507 * [GoMacDraw](https://github.com/skelterjohn/gmd) - A mac implementation of go.wde
chrissexton8a052942014-12-17 12:17:15 -0800508 * [Goop](https://github.com/peterbourgon/goop) - Audio synthesizer engine
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100509 * [Plotinum](https://code.google.com/p/plotinum) - An API for creating plots
510 * [Winhello](https://github.com/MalcolmJSmith/Winhello) - An example Windows GUI hello world application
511 * [allergro](https://github.com/lasarux/go-spanish/tree/master/allegro) - basic wrapper for the Allegro library
512 * [allegro 5](https://github.com/tapir/allegro5) - Go Bindings for Allegro 5 library
513 * [baukasten](https://github.com/Agon/baukasten) - A modular game library.
514 * [blend](https://github.com/Phrozen/blend) - Image processing library and rendering toolkit for Go.
515 * [bmp.go](http://gopaste.org/w0D8b) - package for encoding/decoding Windows BMP files
516 * [chart](https://github.com/vdobler/chart) - Library to generate common chart (pie, bar, strip, scatter, hstogram) in different output formats.
517 * [draw2d](http://code.google.com/p/draw2d) - This package provide an API to draw 2d geometrical form on images. This library is largely inspired by postscript, cairo, HTML5 canvas.
518 * [freetype-go](http://code.google.com/p/freetype-go/) - a Go implementation of FreeType
519 * [gl](https://github.com/go-gl/gl) - OpenGL bindings using glew
520 * [glfw](https://github.com/go-gl/glfw) - bindings to the multi-platform library for opening a window, creating an OpenGL context and managing input
521 * [glfw 3](https://github.com/go-gl/glfw3) - Go bindings for GLFW 3 library
522 * [glh](https://github.com/go-gl/glh) - OpenGL helper functions to manage text, textures, framebuffers and more
523 * [glu](https://github.com/go-gl/glu) - bindings to the OpenGL Utility Library
524 * [egl](http://godoc.org/github.com/mortdeus/egles/egl) - egl bindings
525 * [es2](http://godoc.org/github.com/mortdeus/egles/es2) - es2 bindings
526 * [go-cairo](https://github.com/ungerik/go-cairo) - Go wrapper for the cairo graphics library
527 * [go-csnd6](https://github.com/fggp/go-csnd6) - Go binding to the Csound6 API
528 * [go-csperfthread](https://github.com/fggp/go-csperfthread) - Go binding to the CsoundPerformanceThread helper class of the Csound6 API
529 * [gmask](https://github.com/fggp/gmask) - Go adaptation of the Cmask utility for Csound
530 * [go-gd](https://github.com/bolknote/go-gd) - Go bingings for GD
531 * [go-gnuplot](https://bitbucket.org/binet/go-gnuplot) - go bindings for GNUPlot
532 * [go-gtk3](https://github.com/norisatir/go-gtk3) - gtk3 bindings for go
533 * [go-heatmap](https://github.com/dustin/go-heatmap) - A toolkit for making heatmaps
534 * [go-openal](https://github.com/phf/go-openal) - Experimental OpenAL bindings for Go
535 * [go-opencl](https://github.com/tones111/go-opencl) - A go wrapper to the OpenCL heterogeneous parallel programming library
536 * [gocl](https://github.com/rainliu/gocl) - Go OpenCL (gocl) binding
537 * [opencv](https://github.com/chai2010/opencv/) - Go bindings for OpenCV
538 * [go-taglib](https://github.com/wtolson/go-taglib) - Go wrapper for TagLib, an audio meta-data parser
539 * [go-tmx](https://github.com/salviati/go-tmx) - A Go library that reads Tiled's TMX files
540 * [go-vlc](https://github.com/jteeuwen/go-vlc) - Go bindings for libVLC
541 * [go.wde](https://github.com/skelterjohn/go.wde) - A windowing/drawing/event interface
542 * [GoHM](https://github.com/rainliu/GoHM) - H.265/HEVC HM Video Codec in Go
543 * [GoVisa](https://github.com/rainliu/GoVisa) - H265/HEVC Bitstream Analyzer in Go
544 * [goHorde](http://code.google.com/p/gohorde/) - Go Bindings for the Horde3d Rendering engine.
545 * [gocairo](http://bitbucket.org/dethe/gocairo/) - Go wrapper for cairo graphics library
546 * [goexif](https://github.com/rwcarlsen/goexif) - Retrieve EXIF metadata from image files
547 * [goray](http://goray.sourceforge.net/) - Raytracer written in Go, based on Yafaray
548 * [gosc](https://bitbucket.org/liamstask/gosc) - Pure Go OSC (Open Sound Control) library
549 * [goxscr](http://goxscr.googlecode.com) - Go rewrites of xscreensaver ports
550 * [gst](https://github.com/ziutek/gst) - Go bindings for GStreamer
551 * [hgui](https://github.com/zozor/hgui) - Gui toolkit based on http and gtk-webkit.
552 * [imaging](https://github.com/disintegration/imaging) - Package imaging provides basic image manipulation functions (resize, rotate, flip, crop, etc.) as well as simplified image loading and saving.
553 * [portaudio](http://code.google.com/p/portaudio-go/) - A Go binding to PortAudio
mesilliac7894ba02014-12-21 17:53:25 -0800554 * [pulse-simple](https://github.com/mesilliac/pulse-simple/) - Go bindings for PulseAudio's Simple API, for easy audio capture and playback.
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100555 * [pulsego](https://github.com/moriyoshi/pulsego/) - Go binding for PulseAudio
556 * [smartcrop](https://github.com/muesli/smartcrop) - Content aware image cropping
557 * [resize](https://github.com/nfnt/resize) - Image resizing with different interpolations.
558 * [starfish](https://github.com/gtalent/starfish) - A simple Go graphics and user input library, built on SDL
559 * [stl](https://github.com/hschendel/stl) - library for reading, writing, and manipulating Stereolithography (.stl) files used in 3D printing
560 * [svgo](https://github.com/ajstarks/svgo) - a library for creating and outputting SVG
561 * [tga](https://github.com/ftrvxmtrx/tga) - TARGA image format encoding/decoding library
562 * [videoinput](https://github.com/chai2010/videoinput) - Go bindings for VideoInput (Windows).
563 * [window](https://github.com/jbrukh/window) - Optimized moving window for real-time data
564 * [wingo](https://github.com/BurntSushi/wingo) - A fully-featured window manager written in Go.
565 * [wxGo](https://github.com/JeroenD/wxGo) - Go Wrapper for the wxWidgets GUI
566 * [x-go-binding](http://code.google.com/p/x-go-binding/) - bindings for the X windowing system
567 * [xgb](https://github.com/BurntSushi/xgb) - A fork of the x-go-binding featuring support for thread safety and all X extensions.
568 * [xgbutil](https://github.com/BurntSushi/xgbutil/) - A utility library to make use of the X Go Binding easier. (Implements EWMH and ICCCM specs, key binding support, etc.)
569 * [vu](https://github.com/gazed/vu) - Virtual Universe. A skeleton 3D engine.
570
571## GUIs and Widget Toolkits
572
573 * [go-fltk](https://github.com/zot/go-fltk) - FLTK2 GUI toolkit bindings for Go
574 * [go-gtk](https://github.com/mattn/go-gtk) - Bindings for GTK
575 * [go-qt5](https://github.com/salviati/go-qt5) - qt5 bindings for go
576 * [go.uik](https://github.com/skelterjohn/go.uik) - A UI kit for Go, in Go. (project is closed)
577 * [GoQuick](https://gitorious.org/goquick) - Go and Qt Quick experimentation
578 * [gothic](https://github.com/nsf/gothic) - Tcl/Tk Go bindings
579 * [gotk3](https://github.com/conformal/gotk3) - Go bindings for GTK3, requires GTK version 3.8
580 * [go-webkit2](https://sourcegraph.com/github.com/sourcegraph/go-webkit2) - Go bindings for the WebKitGTK+ v2 API (w/headless browser & JavaScript support)
581 * [Gowut](https://sites.google.com/site/gowebuitoolkit/) - Gowut (Go Web UI Toolkit) is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go, no platform dependent native code is linked or called.
582 * [iup](https://github.com/grd/iup) - Bindings for [IUP](http://www.tecgraf.puc-rio.br/iup)
583 * [mdtwm](https://github.com/ziutek/mdtwm) - Tiling window manager for X
584 * [qml](https://github.com/niemeyer/qml) - QML support for the Go language
585
586## Hardware
587
588 * [go.hid](https://github.com/GeertJohan/go.hid) - Provides communication with USB Human Interface Devices.
589 * [hwio](https://github.com/mrmorphic/hwio) - Hardware I/O library for SoC boards including BeagleBone Black and Raspberry Pi.
590 * [gortlsdr](https://github.com/jpoirier/gortlsdr) - A librtlsdr wrapper, which turns certain USB DVB-T dongles into a low-cost, general purpose software-defined radio receiver.
591
592## Language and Linguistics
593
594 * [alpinocorpus-go](https://github.com/rug-compling/alpinocorpus-go) - A reader and a writer for Alpino corpora.
595 * [go-aspell](https://github.com/trustmaster/go-aspell) - GNU Aspell spell checking library bindings for Go.
596 * [go-language](https://github.com/matiasinsaurralde/go-language) - A simple language detector using letter frequency data.
597 * [go.stringmetrics](https://github.com/robyoung/go.stringmetrics) - String distance metrics implemented in Go
598 * [inflect](https://bitbucket.org/pkg/inflect) - Word inflection library (similar to Ruby ActiveSupport::Inflector). Singularize(), Pluralize(), Underscore() etc.
599 * [libtextcat](https://github.com/pebbe/libtextcat) - A Go wrapper for libtextcat.
600 * [textcat](https://github.com/pebbe/textcat) - N-gram based text categorization, with support for utf-8 and raw text
601 * [sego](https://github.com/huichen/sego) - Chinese language segmenter.
602 * [goling](https://github.com/gyuho/goling) - String Similarity(Cosine Similarity, Levenshtein Distance), Spell Check, Segmentation
603 * [gobay](https://github.com/gyuho/gobay) - Naive Bayesian Classifier (Sentiment Analysis)
604 * [gocha](https://github.com/gyuho/gocha) - CHILDES data analyzing tool
605 * [gomata](https://github.com/gyuho/gomata) - Automata Theory, Computational Linguistics
606
607
608## Logging
609
610 * [glog](https://github.com/golang/glog) - Leveled execution logs for Go
611 * [go-logging](https://github.com/op/go-logging) - Supports different logging backends like syslog, file and memory. Multiple backends can be utilized with different log levels per backend and logger.
612 * [factorlog](https://github.com/kdar/factorlog) - Really fast, featureful logging infrastructure (supports colors, verbosity, and many formats)
613 * [jWalterWeatherman](https://github.com/spf13/jwalterweatherman) - Seamless terminal printing and file logging that’s as easy to use as fmt.Println
614 * [seelog](https://github.com/cihub/seelog) - Flexible dispatching, filtering, and formatting
615 * [spacelog](https://github.com/spacemonkeygo/spacelog) - Hierarchical, leveled, and structured logging library for Go
616 * [timber](https://github.com/ngmoco/timber) - Configurable Logger for Go
617 * [log4go](http://log4go.googlecode.com/) - Go logging package akin to log4j
618 * [syslog](https://github.com/ziutek/syslog) - With this package you can create your own syslog server with your own handlers for different kind of syslog messages
619 * [graylog-golang](https://github.com/robertkowalski/graylog-golang) - graylog-golang is a full implementation for sending messages in GELF (Graylog Extended Log Format) from Google Go (Golang) to Graylog
620 * [rfw](https://github.com/mipearson/rfw) - Rotating file writer - a 'logrotate'-aware file output for use with loggers
621 * [sd](https://github.com/aletheia7/sd) - Writes to the systemd journal, supports user defined systemd journal fields
622
623## Machine Learning
624 * [go-pr](https://github.com/daviddengcn/go-pr) - Gaussian classifier.
625 * [go\_ml](https://github.com/alonsovidales/go_ml) - Linear Regression, Logistic Regression, Neural Networks, Collaborative Filtering, Gaussian Multivariate Distribution.
626 * [bayesian](https://github.com/jbrukh/bayesian) - A naive bayes classifier.
627 * [go-galib](https://github.com/thoj/go-galib) - Genetic algorithms.
628 * [go-porterstemmer](https://github.com/reiver/go-porterstemmer) - An efficient native Go clean room implementation of the Porter Stemming algorithm.
629 * [paicehusk](https://github.com/Rookii/paicehusk) - Go implementation of the Paice/Husk Stemmer
630 * [snowball](https://bitbucket.org/tebeka/snowball) - Snowball stemmer
631 * https://github.com/daviddengcn/go-algs/tree/master/maxflow Maxflow (graph-cuts) energy minimization library.
632
633
634## Mathematics
635
636 * [Cvx](https://github.com/hrautila/cvx) - Convex optimization package, port of CVXOPT python package
637 * [go\_matrix\_cuda](https://godoc.org/github.com/alonsovidales/go_matrix_cuda) - GPU-Accelerated Linear Algebra Libraries based in CUDA
638 * [Units](https://github.com/smyrman/units) - Implements types, units, converter functions and some mathematics for some common physical types. lib
639 * [bayesian](https://github.com/jbrukh/bayesian) - Naive Bayesian Classification for Go
640 * [blas](https://github.com/ziutek/blas) - Go implementation of BLAS (Basic Linear Algebra Subprograms)
641 * [cartconvert](https://github.com/the42/cartconvert) - cartography functions for the Go programming language
642 * [dice](https://github.com/tonio-ramirez/dice) - Dice rolling library
643 * [evaler](https://github.com/soniah/evaler) - A simple floating point arithmetic expression evaluator
644 * [fixed](https://github.com/klkblake/fixed) - A fixed point (Q32.32 format) math library.
645 * [geom](https://github.com/skelterjohn/geom) - 2d geometry.
646 * [go.mahalanobis](https://github.com/ant0ine/go.mahalanobis) - Naive implementation of the Mahalanobis distance using go.matrix
647 * [go-fftw](https://github.com/runningwild/go-fftw) - Go bindings for FFTW - The Fastest Fourier Transform in the West
648 * [go-fn](https://code.google.com/p/go-fn/) - Special functions that would not fit in "math" pkg
649 * [go-gt](https://code.google.com/p/go-gt/) - Graph theory algorithms
650 * [go-humanize](https://github.com/dustin/go-humanize) - Formatting numbers for humans.
651 * [go-lm](https://github.com/awblocker/go-lm) - Linear models in Go. Provides WLS and regression with t residuals via a cgo -> BLAS/LAPACK interface.
652 * [go-symexpr](https://github.com/verdverm/go-symexpr) - Symbolic math as an AST with derivatives, simplification, and non-linear regression
653 * [go.matrix](https://github.com/skelterjohn/go.matrix) - a linear algebra package
654 * [gochipmunk](https://github.com/paulcoyle/gochipmunk) - Go bindings to the Chipmunk Physics library.
655 * [gocomplex](http://code.google.com/p/gocomplex/) - a complex number library
656 * [godec](http://code.google.com/p/godec/) - multi-precision decimal arithmetic
657 * [gographviz](http://code.google.com/p/gographviz) - Graphviz DOT language parser for Go
658 * [gomat](http://code.google.com/p/gomat/) - lightweight FAST matrix and vector math
659 * [gsl](https://bitbucket.org/mingzhi/gsl) - GNU Scientific Library bindings
660 * [mathutil](https://github.com/cznic/mathutil) - Package mathutil provides utilities supplementing the standard 'math' and 'rand' packages.
661 * [mt19937\_64](https://github.com/farces/mt19937_64) - Mersenne Twister int64 random source
662 * [polyclip.go](https://github.com/akavel/polyclip.go) - Go implementation of algorithm for Boolean operations on 2D polygons
663 * [pso-go](https://github.com/tenntenn/pso-go) - A library of PSO (Particle Swarm Optimization) for Go.
664 * [rand](https://bitbucket.org/MaVo159/rand) - 64-bit version of the math/rand package with Mersenne twister support.
665 * [statistics](https://github.com/grd/stat) - GNU GSL Statistics (GPLv3)
666 * [vector](https://github.com/proxypoke/vector) - A small vector lib.
667 * [goris](https://github.com/gyuho/goris) - Timeseries database.
668 * [gofd](https://bitbucket.org/gofd/gofd) - concurrent finite domain constraint solver.
669
670## Misc
671
672 * [GCSE](http://go-search.org/) - Go code search engine. [source](https://github.com/daviddengcn/gcse)
673 * [CGRates](https://github.com/rif/cgrates) - Rating system designed to be used in telecom carriers world
674 * [Go-PhysicsFS](https://github.com/DeedleFake/Go-PhysicsFS) - Go bindings for the PhysicsFS archive-access abstraction library.
675 * [go.pipeline](https://github.com/songgao/go.pipeline) - Library that emulates Unix pipelines
676 * [GoFlow](https://github.com/trustmaster/goflow) - Flow-based and dataflow programming library for Go
677 * [GoLCS](https://github.com/makokaka/goalgo/tree/master/algo) - Solve Longest Common Sequence problem in go
678 * [Gotgo](https://github.com/droundy/gotgo) - A Go preprocessor that provides an implementation of generics
679 * [Hranoprovod](https://github.com/aquilax/hranoprovod-go) - Command-line calorie tracking
680 * [Space Monkey Monitor](https://github.com/spacemonkeygo/monitor) - A flexible process data collection, monitoring, and instrumentation library for Go
681 * [Tideland CGL Monitoring](http://code.google.com/p/tcgl/) - Flexible monitoring of your application
682 * [atexit](https://bitbucket.org/tebeka/atexit) - Simple atexit library
683 * [bíogo](http://code.google.com/p/biogo/) - Basic bioinformatics functions for the Go language.
684 * [cast](https://github.com/spf13/cast) - Safe and easy casting from one type to another in Go
685 * [cpu](https://github.com/jpoirier/cpu) - A Go package that reports processor topology
686 * [cron](https://github.com/robfig/cron) - A library for running jobs (funcs) on a cron-formatted schedule
687 * [dbus-go](http://code.google.com/p/dbus-go/) - D-Bus Go library
688 * [desktop](https://bitbucket.org/tebeka/desktop) - Open file/uri with default application (cross platform)
689 * [devboard](https://launchpad.net/devboard) - Kanban board application based on Simple-Khanban
690 * [dump](http://code.google.com/p/golang/source/browse/src/pkg/dump/) - An utility that dumps Go variables, similar to PHP's var\_dump
691 * [env](https://github.com/darkhelmet/env) - Easily pull environment variables with defaults
692 * [epub](https://gitorious.org/go-pkg/epub) - Bindings for libepub to read epub content.
693 * [faker](https://github.com/manveru/faker) - Generate fake data, names, text, addresses, etc.
694 * [fsnotify](https://github.com/howeyc/fsnotify) - File system notifications for Go
695 * [functional](https://github.com/tcard/functional) - Functional programming library including a lazy list implementation and some of the most usual functions.
696 * [go-amiando](https://github.com/ungerik/go-amiando) - Wrapper for the Amiando event management API
697 * [go-bit](http://code.google.com/p/go-bit/) - An efficient and comprehensive bitset implementation with utility bit functions.
698 * [go-business-creditcard](https://github.com/dsparling/go-business-creditcard) - Validate/generate credit card checksums/names.
699 * [gochem](http://github.com/rmera/gochem) - A computational chemistry/biochemistry library.
700 * [go-ean](https://github.com/nicholassm/go-ean) - A minimal utility library for validating EAN-8 and EAN-13 and calculating checksums.
701 * [go-eco](https://code.google.com/p/go-eco/) - Functions for use in ecology
702 * [go-erx](https://github.com/StepLg/go-erx) - Extended error reporting library
703 * [go-fann](https://github.com/white-pony/go-fann) - Go bindings for FANN, library for artificial neural networks
704 * [go-idn](http://code.google.com/p/go-idn/) - a project to bring IDN support to Go, feature compatible with libidn
705 * [go-metrics](https://github.com/rcrowley/go-metrics) - Go port of Coda Hale's Metrics library
706 * [go-osx-plist](https://github.com/kballard/go-osx-plist) - CoreFoundation Property List support for Go
707 * [go-papi](https://github.com/losalamos/go-papi) - Go interface to the PAPI performance API
708 * [go-pkg-mpd](https://github.com/jteeuwen/go-pkg-mpd) - A library to access the MPD music daemon
709 * [go-pkg-xmlx](https://github.com/jteeuwen/go-pkg-xmlx) - Extension to the standard Go XML package. Maintains a node tree that allows forward/backwards browser and exposes some simpel single/multi-node search functions
710 * [go-qrand](https://github.com/salviati/go-qrand) - Go client for quantum random bit generator service at random.irb.hr
711 * [go-semvar](http://code.google.com/p/go-semver/) - Semantic versions (see http:/semver.org)
712 * [go-taskstats](https://github.com/salviati/go-taskstats) - Go interface for Linux taskstats
713 * [go-translate](https://github.com/mattn/go-translate) - Google Language Translate library
714 * [go-uuid](https://code.google.com/p/go-uuid/) - Universal Unique IDentifier generator and parser
715 * [go.dbus](https://github.com/guelfey/go.dbus) - Native Go library for D-Bus
716 * [go.pcsclite](https://github.com/ebfe/go.pcsclite) - Go wrapper for pcsc-lite
717 * [goNI488](https://github.com/jpoirier/goNI488) - A Go wrapper around National Instruments NI488.2 General Purpose Interface Bus (GPIB) driver.
718 * [goPromise](https://github.com/anschelsc/goPromise/) - Scheme-like delayed evaluation for Go
719 * [goST](https://bitbucket.org/pseudomind/gost) - A steam properties (steam table) library written for Go. This was designed as a native go equivalent to XSteam.
720 * [gocsv](http://code.google.com/p/gocsv) - Library for CSV parsing and emitting
721 * [goga](https://github.com/rrs/goga) - A genetic algorithm framework
722 * [gogobject](https://github.com/nsf/gogobject) - GObject-introspection based bindings generator
723 * [golife](https://github.com/r2p2/golife) - Implementation of Game of Life for command line
724 * [go-magic](https://code.google.com/p/go-magic/) - A Go wrapper for libmagic
725 * [go-magic](https://github.com/kwilczynski/go-magic) - Simple interface to libmagic for Go Programming Language
726 * [gomusicbrainz](https://github.com/michiwend/gomusicbrainz) - MusicBrainz WS2 client library
727 * [gommap](https://launchpad.net/gommap) - gommap enables Go programs to directly work with memory mapped files and devices in a very efficient way
728 * [goneuro](https://github.com/jbrukh/goneuro) - Go driver for NeuroSky devices.
729 * [goplan9](http://code.google.com/p/goplan9/) - libraries for interacting with Plan 9
730 * [goraphing](http://code.google.com/p/goraphing/) - A tool to generate a simple graph data structures from JSON data files
731 * [go-ses](https://github.com/sourcegraph/go-ses) - Amazon AWS Simple Email Service (SES) API client
732 * [go-systemd](https://github.com/3M3RY/go-systemd) - Utility functions for interacting with the systemd init system
733 * [twitterfetcher](https://bitbucket.org/georgebaev/twitterfetcher) - A tool to make Twitter API requests using the [Application-only authentication](https://dev.twitter.com/docs/auth/application-only-auth)
734 * [gouuid](https://github.com/nu7hatch/gouuid) - Pure Go UUID v3, 4 and 5 generator compatible with RFC4122
735 * [Prometheus Instrumentation/Metrics Client](https://github.com/prometheus/client_golang) - This is a whitebox instrumentation framework for servers written in Go. It exposes programmatically-generated metrics automatically for use in the Prometheus time series collection and post-processing environment.
736 * [lineup](https://github.com/jdp/lineup) - A minimalistic message queue server
737 * [mimemail](https://github.com/chrneumann/mimemail.git) - Construct plain text MIME messages for use with net/smtp.
738 * [mitigation](https://github.com/sarnowski/mitigation) - Package mitigation provides the possibility to prevent damage caused by bugs or exploits.
739 * [nma.go](https://github.com/dustin/nma.go) - A NotifyMyAndroid client for go.
740 * [passwd](https://github.com/willdonnelly/passwd) - A parser for the /etc/passwd file
741 * [pool](https://github.com/stefantalpalaru/pool) - A generic worker pool
742 * [primegen.go](https://github.com/jbarham/primegen.go) - Sieve of Atkin prime number generator
743 * [procfile](https://github.com/hecticjeff/procfile) - A Procfile parser
744 * [randat](https://github.com/extemporalgenome/randat) - Devel tool for generating random bytestrings and encoding files in code-friendly forms
745 * [replaykit](https://github.com/dustin/replaykit) - A library for replaying time series data.
746 * [selenium](https://bitbucket.org/tebeka/selenium/src) - Selenium client
747 * [go-selenium](https://github.com/sourcegraph/go-selenium) - Selenium WebDriver client for Go
748 * [serial](https://github.com/ziutek/serial) - Serial ports API (pure Go)
mikepbf9c27ca2014-12-14 11:38:51 -0800749 * [go-serial](https://github.com/mikepb/go-serial) - Go binding to libserialport for serial port functionality (cgo).
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100750 * [sio](https://github.com/schleibinger/sio) - Package sio lets you access old serial junk. It's a go-gettable fork and modification of dustin's rs232 package.
751 * [symutils](https://github.com/salviati/symutils) - Various tools and libraries to handle symbolic links
752 * [udis86](https://github.com/jroimartin/udis86) - Go bindings for libudis86
753 * [xplor](http://bitbucket.org/mpl/xplor) - Files tree browser for p9p acme
754 * [yubigo](https://github.com/GeertJohan/yubigo) - Yubikey OTP validation and auhtentication API client.
755 * [go-villa](https://github.com/daviddengcn/go-villa) - Some miscellaneous wrapper and small algorithms.(wrappers to slices, priority queues, path related apis, a string set type)
756 * [go.bitcoin](https://github.com/GeertJohan/go.bitcoin) - Wrapper for bitcoind daemon API, makes working with bitcoins easy.
757 * [Breaker](https://github.com/matttproud/golang_circuitbreaker) - Breaker enables graceful degraded mode operations by means of wrapping unreliable interservice interface points with circuit breaker primitives.
758 * [Wukong](https://github.com/huichen/wukong) - A highly extensible full-text search engine written in Go.
759 * [gotenv](https://github.com/subosito/gotenv) - Loads environment variables from ` .env ` file
760 * [daemonigo](https://github.com/tyranron/daemonigo) - A simple library to daemonize Go applications.
761 * [go-eventsocket](https://github.com/fiorix/go-eventsocket) - An event socket client/server library for the [FreeSWITCH](https://freeswitch.org) telephony platform.
asaskevichc3a9ab52014-12-22 06:12:09 -0800762 * [EventBus](https://github.com/asaskevich/EventBus) - Lightweight event bus with async compatibility for Go .
Andrew Gerrand5bc444d2014-12-10 11:35:11 +1100763
764
765## Music
766
767 * [go-libshout](https://github.com/systemfreund/go-libshout) - Go bindings for libshout
768 * [gompd](http://code.google.com/p/gompd/) - A client interface for the MPD (Music Player Daemon)
769 * [portmidi](https://github.com/rakyll/portmidi) - Go bindings for libportmidi
770 * [launchpad](https://github.com/rakyll/launchpad) - A Go client for Novation Launchpad
771 * [go-csnd6](https://github.com/fggp/go-csnd6) - Go binding to the Csound6 API
772 * [go-csperfthread](https://github.com/fggp/go-csperfthread) - Go binding to the CsoundPerformanceThread helper class of the Csound6 API
773 * [gmask](https://github.com/fggp/gmask) - Go adaptation of the Cmask utility for Csound
774
775## Networking
776
777 * [Go Ajax](https://github.com/jeffreybolle/goajax) - Go Ajax is a JSON-RPC implementation designed to create AJAX powered websites.
778 * [GoSIPs](https://github.com/rainliu/gosips) - SIP (Session Initiation Protocol) Stack in Go
779 * [GoRTP](https://github.com/wernerd/GoRTP) - RTP / RTCP stack implementation for Go
780 * [QRP](https://github.com/liamzebedee/go-qrp) - QRP is a simple packet-based RPC protocol designed as a simple alternative to Go's rpc, that can run over UDP
781 * [Rsync](https://github.com/julian-gutierrez-o/rsync) - Rsync algorithm as a Go library
782 * [Tonika](http://5ttt.org) - Secure social networking platform
783 * [Uniqush](http://uniqush.org/) - A free and open source software which provides a unified push service for server-side notification to apps on mobile devices.
784 * [createsend-go](https://sourcegraph.com/github.com/sourcegraph/createsend-go/tree) - API client for [Monitor http://www.campaignmonitor.com](wiki/Campaign) (email campaign service)
785 * [VDED](https://github.com/jbuchbinder/vded) - Vector Delta Engine Daemon - track deltas in ever-increasing values (written in Go)
786 * [circle](https://github.com/losalamos/circle/) - Go interface to the [libcircle](http://hpc.github.io/libcircle/) distributed-queue API
787 * [dmrgo](https://github.com/dgryski/dmrgo) - Library for with Hadoop Streaming map/reduce
788 * [doozerconfig](https://github.com/srid/doozerconfig) - Go package for managing json-encoded configuration in Doozer
789 * [doozerd](https://github.com/ha/doozerd) - A consistent distributed data store
790 * [eventsource](https://github.com/antage/eventsource) - Server-sent events for net/http server.
791 * [gearman-go](https://bitbucket.org/mikespook/gearman-go) - A native implementation for Gearman API with Go.
792 * [glibvnc](https://github.com/LukeMauldin/glibvnc) - Go wrapper using CGO for the libvnc library.
793 * [gmail](https://github.com/SlyMarbo/gmail) - Simple library for sending emails from a Gmail account, for people not interested in dealing with protocol details.
794 * [go-curl](https://github.com/andelf/go-curl) - libcurl bingding that supports go func callbacks
795 * [go-dbus](https://github.com/norisatir/go-dbus) - A library to connect to the D-bus messaging system
796 * [go-icap](http://code.google.com/p/go-icap/) - ICAP (Internet Content Adaptation Protocol) server library
797 * [go-imap](https://github.com/martine/go-imap) - IMAP client library
798 * [go-mail](https://github.com/ungerik/go-mail) - Email utilities including RFC822 messages and Google Mail defaults.
799 * [nagiosplugin](https://github.com/fractalcat/nagiosplugin) - package for writing Nagios/monitoring plugins
800 * [go-nntp](https://github.com/dustin/go-nntp) - An NNTP client and server library for go
801 * [go-router](http://code.google.com/p/go-router/) - implementation of remote channel communication
802 * [go-rpcgen](https://github.com/kylelemons/go-rpcgen) - ProtoBuf RPC binding generator for net/rpc and AppEngine
803 * [go-socket.io](https://github.com/madari/go-socket.io) - A Socket.IO backend implementation written in Go
804 * [gosocks](https://github.com/hailiang/gosocks) - A SOCKS (SOCKS4, SOCKS4A and SOCKS5) proxy client library in Go.
805 * [go9](http://code.google.com/p/go9) - an implementation of the 9P distributed file system protocol
806 * [go9p](http://code.google.com/p/go9p/) - 9p protocol implementation in Go
807 * [goagain](https://github.com/rcrowley/goagain) - zero-downtime restarts in Go
808 * [gobeanstalk](https://github.com/iwanbk/gobeanstalk) - Go Beanstalkd client library
809 * [gogammu](https://github.com/ziutek/gogammu) - Library for sending and receiving SMS
810 * [gonetbench](https://github.com/nu7hatch/gonetbench) - Simple TCP benchmarking tool
811 * [gonetcheck](https://github.com/bjdean/gonetcheck) - package for checking general internet access
812 * [gopacket](http://code.google.com/p/gopacket) - Packet encoding/decoding, pcap/pfring/afpacket support, TCP assembly, and more!
813 * [gopcap](https://github.com/akrennmair/gopcap) - A simple wrapper around libpcap
814 * [goprotobuf](http://code.google.com/p/goprotobuf/) - the Go implementation of Google's Protocol Buffers
815 * [gogoprotobuf](http://code.google.com/p/gogoprotobuf/) - another Go implementation of Protocol Buffers, but with extensions and code generation plugins.
816 * [golang\_protobuf\_extensions](https://github.com/matttproud/golang_protobuf_extensions) - Protocol Buffer extensions to support streaming message encoding and decoding.
817 * [goq](https://github.com/anandkunal/goq) - A persistent message queue written in Go.
818 * [goradius](https://github.com/kirves/goradius) - A Radius client written in Go
819 * [gosndfile](https://github.com/mkb218/gosndfile) - Go binding for libsndfile
820 * [gosnmp](https://github.com/soniah/gosnmp) - an SNMP library written in GoLang.
821 * [gozmq](https://github.com/alecthomas/gozmq) - Go Bindings for 0mq (zeromq/zmq)
822 * [handlersocket-go](https://github.com/bketelsen/handlersocket-go) - Go native library to connect to HandlerSocket interface of InnoDB tables
823 * [Hprose](https://github.com/hprose/hprose-go) - Hprose is a High Performance Remote Object Service Engine.
824 * [go-imap](https://github.com/mxk/go-imap) - Implementation of IMAP4rev1 client, as described in RFC 3501
825 * [Inbucket](http://jhillyerd.github.io/inbucket/) - Inbucket is an email testing service; it will accept messages for any email address and make them available to view via a web interface.
826 * [ipaddr](https://github.com/mikioh/ipaddr) - basic functions for the manipulation of IP address prefixes and subsequent addresses as described in RFC 4632 and RFC 4291.
827 * [ipaddress](https://github.com/llimllib/ipaddress) - Convenient ip address functions: ip -> int, int -> ip, and IPNet broadcast address
828 * [iris](http://iris.karalabe.com) - Peer-to-peer messaging for back-end decentralization.
829 * [iris-go](https://github.com/karalabe/iris-go) - Go binding for the Iris decentralized messaging framework.
830 * [kafka.go](https://github.com/jdamick/kafka.go) - Producer & Consumer for the Kafka messaging system
831 * [ldap](https://github.com/mmitton/ldap) - Basic LDAP v3 functionality for the GO programming language.
832 * [mbxchan](https://bitbucket.org/levarnon/mbx) - An easy communication between distributed Go applications using standard Go channels and remote procedure calls.
833 * [NATS](https://github.com/apcera/nats) - NATS distributed messaging system client for Go
834 * [netsnail](https://github.com/purex01/netsnail) - A low-bandwidth simulator
835 * [npipe](https://github.com/natefinch/npipe) - a pure Go wrapper for Windows named pipes
836 * [netutils](https://github.com/timtadh/netutils) - Simple interface for turning TCP Sockets into channels.
837 * [opendap](https://github.com/mqu/openldap) - Go wrapper for Openldap
838 * [protorpc](https://github.com/chai2010/protorpc/) - Google Protocol Buffers RPC for Go and C++
839 * [remotize](https://github.com/josvazg/remotize) - A remotize package and command that helps remotizing methods without having to chaneg their signatures for rpc
840 * [replican-sync](https://github.com/cmars/replican-sync) - An rsync algorithm implementation in Go
841 * [rs232](https://github.com/dustin/rs232.go) - Serial interface for those of us who still have modems (or arduinos)
842 * [rss](https://github.com/SlyMarbo/rss) - RSS parsing library.
843 * [seamless](https://bitbucket.org/tebeka/seamless) - Reverse TCP Proxy with HTTP management API
844 * [spdy](https://github.com/SlyMarbo/spdy) - SPDY library, wired into net/http, currently supporting servers only.
845 * [statsd-go](https://github.com/jbuchbinder/statsd-go) - Statsd implementation in Go, forked from gographite, which submits to Ganglia
846 * [stompngo](https://github.com/gmallard/stompngo) - A Stomp 1.1 Compliant Client
847 * [stompngo\_examples](https://github.com/gmallard/stompngo_examples) - Examples for stompngo.
848 * [telnet](https://github.com/ziutek/telnet) - A simple interface for interacting with Telnet connection
849 * [tcp\_fallback](https://github.com/Memset/tcp_fallback) - A TCP proxy implementing a simple fallback mechanism.
850 * [tcpmeter](https://code.google.com/p/tcpmeter) - A TCP throughput measuring tool
851 * [tcp](https://github.com/mikioh/tcp) - TCP-level socket options that allow manipulation of TCP connection facilities.
852 * [traceroute](https://github.com/aeden/traceroute) - A traceroute implementation
853 * [uritemplates](https://github.com/jtacoma/uritemplates) - A level 4 implementation of URI Templates (RFC 6570)
854 * [sockjs-go](https://github.com/fzzy/sockjs-go) - Implements server side counterpart for the SockJS-client browser library.
855 * [websocketd](https://github.com/joewalnes/websocketd) - HTTP server that converts STDIN/STDOUT program into WebSockets service. Also handles HTML and CGI.
856 * [zmq2](https://github.com/pebbe/zmq2) - A Go interface to ZeroMQ (zmq, 0MQ) version 2.
857 * [zmq3](https://github.com/pebbe/zmq3) - A Go interface to ZeroMQ (zmq, 0MQ) version 3.
858 * [zmq4](https://github.com/pebbe/zmq4) - A Go interface to ZeroMQ (zmq, 0MQ) version 4.
859 * [Grumble](https://github.com/mkrautz/grumble) - Mumble (VoIP) server implementation
860 * [go-sslterminator](https://github.com/cmpxchg16/go-sslterminator) - SSL terminator proxy
861 * [gobench](https://github.com/cmpxchg16/gobench) - HTTP/HTTPS load test and benchmark tool
862 * [Gorilla WebSocket](https://github.com/gorilla/websocket) - WebSocket protocol implementation
863 * [apiproxy](https://sourcegraph.com/github.com/sourcegraph/apiproxy/tree) - proxy for HTTP/REST APIs with configurable cache timeouts
864 * [httpfstream](https://sourcegraph.com/github.com/sourcegraph/httpfstream/tree) - streaming append and follow of HTTP resources (using WebSockets)
865 * [goproxy](https://github.com/elazarl/goproxy) - a programmable HTTP proxy.
866 * [zero-downtime-daemon](https://bitbucket.org/PinIdea/zero-downtime-daemon) - Configurable zero downtime daemon (Hot Update) framework for any kind of TCP,HTTP,FCGI services
867 * [boom](https://github.com/rakyll/boom) - HTTP(s) benchmarking tool, Apache Benchmark replacement
868 * [gbench](https://github.com/sasanrose/gbench) - HTTP(s) Load Testing And Benchmarking Tool inspired by Apache Benchmark and Siege.
869 * [go-flowrate](https://github.com/mxk/go-flowrate) - Data transfer rate control (monitoring and limiting)
870 * [go-diameter](https://github.com/fiorix/go-diameter) - Diameter stack and Base Protocol (RFC 6733)
871 * [SOCKS5 Server](https://code.google.com/p/go-socks5) - Scalable SOCKS5 server with Access Control Lists
872
873#### DNS
874 * [dns](https://github.com/miekg/dns) - A DNS library in Go
875 * [dyndnscd](https://github.com/akrennmair/dyndnscd) - a configurable dyndns client
876 * [GeoDNS](https://github.com/abh/geodns) - geo-aware authoritative DNS server
877 * [grong](https://github.com/bortzmeyer/grong) - Small authoritative DNS name server
878 * [mdns](https://github.com/davecheney/mdns/) - Multicast DNS library for Go
879 * [bitz](https://github.com/nictuku/bitz) - BitMessage client node and library
880 * [dnsimple](https://github.com/pearkes/dnsimple) - an interface to the DNSimple API
881
882#### FTP
883 * [ftp](https://bitbucket.org/zombiezen/ftp/) - Package ftp provides a minimal FTP client as defined in RFC 959
884 * [ftp4go](http://code.google.com/p/ftp4go/) - An FTP client for Go, started as a port of the standard Python FTP client library
885 * [goftp](https://github.com/jlaffaye/) - A FTP client library
886 * [ftps](https://github.com/webguerilla/ftps) - An implementation of the FTPS protocol
887
888#### Instant Messaging
889
890 * [GoTY](http://logik.li/projects/goty) - "Go Troll Yourself", minimalist client IRC library
891 * [go-irc](https://github.com/husio/go-irc) - Simple IRC client library
892 * [go-xmpp](https://github.com/mattn/go-xmpp) - XMPP client library
893 * [gobir](http://code.google.com/p/kylelemons/source/browse?repo=gobir) - Extensible IRC bot with channel administration, seen support, and go documentation querying
894 * [goexmpp](http://code.google.com/p/goexmpp/) - XMPP client implementation
895 * [goirc](https://github.com/fluffle/goirc/) - event-based stateful IRC client framework
896 * [gorobot](https://github.com/aimxhaisse/gorobot) - a modular IRC bot
897 * [irc.go](http://code.google.com/p/go-bot/source/browse/irc.go) - Go IRC bot framework
898 * [ircflu](https://github.com/muesli/ircflu) - IRC bot with support for commands, scripting and web-hooks
899
900## Operating System Interfaces
901
902 * [Go-fuse](https://github.com/hanwen/go-fuse) - Library to write FUSE filesystems in Go
903 * [Go FUSE file system library](http://bazil.org/fuse/) - From-scratch implementation of the kernel-userspace communication protocol based on Russ Cox'.
904 * [go-osx-xattr](https://github.com/bitcartel/go-osx-xattr) - Package xattr wraps OS X functions to manipulate the extended attributes of a file, directory and symbolic link.
905 * https://bitbucket.org/kardianos/service/overview - Service will install / un-install, start / stop, and run a program as a service (daemon) on Windows/Linux and OSX.
906 * https://github.com/measure/os - Metrics library for operating system measurements (Linux/MacOSX)
907
908## Other Random Toys, Experiments and Example Code
909
910 * [go-crazy](https://github.com/droundy/go-crazy) - An experimental source-to-source compiler for go
911 * [go-gtk-demo](https://github.com/pebbe/go-gtk-demo) - A demonstration of how to use GTK+ with Go.
912 * [go-hashmap](https://github.com/phf/go-hashmap) - A hash table in pure go as an experiment in Go performance
913 * [goconc](http://code.google.com/p/goconc/) - A collection of useful concurrency idioms and functions for Go, compiled
914 * [goplay](https://github.com/timtadh/goplay) - A bunch of random small programs in Go
915 * [lifegame-on-golang](https://github.com/horiuchi/lifegame-on-golang) - Game of Life in Go
916 * [linear](https://github.com/tychofreeman/Linear) - Playing around with the linear algebra
917 * [project euler in go](https://github.com/yyyc514/project_euler_in_go) - Solutions to Project Euler in Go also
918 * [shadergo](https://github.com/gyuque/shadergo) - shader test using Go
919 * [travisci-golang-example](https://github.com/atotto/travisci-golang-example) - Travis-CI example for Go
920 * [gosequence](https://github.com/gyuho/gosequence) - Slice, Map tricks, Stack, Queue
921 * [goroup](https://github.com/gyuho/goroup) - Set Theory
922
923## P2P and File Sharing
924
925 * [Taipei-Torrent](https://github.com/jackpal/Taipei-Torrent) - A BitTorrent client
926 * [ed2kcrawler](https://github.com/kevinwatt/ed2kcrawler) - eDonkey2000 link crawler
927 * [gobit](https://github.com/jessta/gobit) - Bittorrent Client in Go
928 * [gop2p](https://github.com/nacmartin/gop2p) - A simple p2p app to learn Go
929 * [wgo](https://github.com/royger/wgo) - A simple BitTorrent client based in part on the Taipei-Torrent and gobit code
930 * [DHT](https://github.com/nictuku/dht) - Kademlia DHT node used by Taipei-Torrent, compatible with BitTorrent
931
932## Programming
933
934 * [go-clang](http://bitbucket.org/binet/go-clang) - cgo bindings to the C-API of libclang
935 * [go-galib](https://github.com/thoj/go-galib) - a library of Genetic Algorithms
936 * [go-intset](https://github.com/phf/go-intset) - a library to work with bounded sets of integers, including multiple alternative implementations
937 * [go-parse](https://github.com/vito/go-parse) - a Parsec-like parsing library
938 * [godeferred](https://github.com/mattn/godeferred) - port of jsdeferred: http://cho45.stfuawsc.com/jsdeferred/
939 * [Shuffle](https://github.com/earthboundkid/shuffle) - Implementation of the Fisher–Yates shuffle (or Knuth shuffle) in Go.
940
941## Scanner and Parser Generators
942
943 * [ebnf2y](http://github.com/cznic/ebnf2y) - Utility for converting EBNF grammars into yacc compatible skeleton .y files.
944 * [fsm](http://github.com/cznic/fsm) - FSM (NFA, DFA) utilities.
945 * [gocc](http://code.google.com/p/gocc/) - Go Compiler Compiler
946 * [golex](http://github.com/cznic/golex) - Lex/flex like fast (DFA) scanners generator.
947 * [gopp](http://github.com/skelterjohn/gopp) - Go Parser Parser
948 * [goyacc](http://github.com/cznic/goyacc) - Goyacc is a version of yacc generating Go parsers.
949 * [Ragel](http://www.complang.org/ragel/) - State Machine Compiler
950 * [y](http://github.com/cznic/y) - Package y converts .y (yacc) source files to data suitable for a parser generator..
951
952## Simulation Modeling
953
954 * [godes](https://github.com/agoussia/godes) - Library for building discrete event simulation models
955
956## Sorting
957
958 * [funnelsort](https://github.com/eikeon/funnelsort) - Lazy funnel sort -- a cache-oblivious sorting algorithm
959 * [Sortutil](http://patrickmylund.com/projects/sortutil/) - Nested, case-insensitive, and reverse sorting for Go.
960 * [sortutil](https://github.com/cznic/sortutil) - Utilities supplemental to the Go standard "sort" package
961 * [tarjan](http://github.com/looplab/tarjan) - Graph loop detection function based on Tarjan's algorithm
962 * [timsort](https://github.com/psilva261/timsort) - Fast, stable sort, uses external comparator or sort.Interface
963
964## Source Code Management
965
966 * [go-deps](https://github.com/sourcegraph/go-deps) - Analyzes and recursively installs Go package deps (library functionality similar to ` go get `)
967 * [go-pkgs](https://github.com/sourcegraph/go-pkgs) - Finds all matching packages in all of the GOPATH trees (library functionality similar to ` go list all `)
968 * [hggofmt](http://bitbucket.org/ede/hggofmt/) - A Mercurial/hg extension with a hook to
969 * [nut](https://github.com/AlekSi/nut) - Nut is a tool to manage versioned Go source code packages, called "nuts".
970 * [vcstool](https://github.com/wjwwood/vcstool) - VCS abstraction tool
971 * [go-diff](https://github.com/daviddengcn/go-diff) - A diff command for go languange showing semantic differences of two go source files.
972 * [go-vcs](https://github.com/sourcegraph/go-vcs) - clone and check out revs of VCS repositories (git and hg support)
973 * [go-vcsurl](https://github.com/sourcegraph/go-vcsurl) - Lenient VCS repository URL parsing library
974 * [gogitver](https://github.com/aletheia7/gogitver) - Embeds a git tag (version string) into your application
975
976## Strings and Text
977
978 * [Black Friday](https://github.com/russross/blackfriday) - A markdown processor
979 * [NTemplate](https://github.com/yohcop/ntemplate.go) - Nested Templates
980 * [binarydist](https://github.com/kr/binarydist/) - Binary diff and patch
981 * [columnize](https://code.google.com/p/go-columnize/) - format slice or array into aligned columns
982 * [csvutil](https://github.com/bmatsuo/csvutil) - A heavy duty CSV reading and writing library.
983 * [dgohash](https://github.com/dgryski/dgohash) - Collection of string hashing functions, including Murmur3 and others
984 * [gettext](https://github.com/gosexy/gettext) - Feature complete, cgo
985 * [gettext-go](https://github.com/chai2010/gettext-go/) - GNU's gettext support, written in pure Go
986 * [go-guess](https://github.com/salviati/go-guess) - Go wrapper for libguess
987 * [go-migemo](https://github.com/mattn/go-migemo) - migemo extension for go (Japanese incremental text search)
988 * [goini](https://github.com/glacjay/goini) - A go library to parse INI files.
989 * [golorem](https://github.com/drhodes/golorem) - lorem ipsum generator
990 * [gosphinx](https://github.com/kpumuk/gosphinx) - A Go client interface to the Sphinx standalone full-text search engine
991 * [gpKMP](https://github.com/paddie/goKMP) - String-matching in Go using the Knuth–Morris–Pratt algorithm
992 * [hangul](https://github.com/suapapa/go_hangul) - Handy tools to manipulate Korean character.
993 * [kasia.go](https://github.com/ziutek/kasia.go) - Templating system for HTML and other text documents
994 * [kview](https://github.com/ziutek/kview) - Simple wrapper for kasia.go templates. It helps to modularize content of a website
995 * [mail.go](https://bitbucket.org/taruti/mail.go) - Parse email messages
996 * [peg](https://github.com/badgerodon/peg) - Parsing Expression Grammer Parser
997 * [polyglot](https://github.com/lxn/polyglot) - String translation utilities for Go
998 * [pretty.go](https://github.com/kr/pretty.go) - Pretty-printing for go values
999 * [rubex](https://github.com/moovweb/rubex) - A simple regular expression library that supports Ruby's regex syntax. It is faster than Regexp.
1000 * [scanner](http://code.google.com/p/golang/source/browse/src/pkg/scanner) - A text scanner that parses primitive types, analogous to Java's
1001 * [segment](https://github.com/llimllib/segment) - An implementation of Norvig's recursive word segmentation algorithm
1002 * [strogonoff](https://github.com/jbochi/strogonoff) - Stenography with Go
1003 * [strftime](https://bitbucket.org/tebeka/strftime) - strftime implementation
1004 * [strutil](https://github.com/cznic/strutil) - Package strutil collects utils supplemental to the standard strings package.
1005 * [text](https://github.com/kr/text) - Text paragraph wrapping and formatting
1006 * [go-colortext](https://github.com/daviddengcn/go-colortext) - Change the color of the text and background in the console, working both in Windows and other systems.
1007 * [goskirt](https://github.com/madari/goskirt) - Upskirt markdown library bindings for Go
1008 * [go-ngram](https://github.com/Lazin/go-ngram) N-gram index for Go
1009 * [govalidator](https://github.com/asaskevich/govalidator) - Package of string validators and sanitizers
1010
1011## Testing
1012
1013 * [assert](https://github.com/chai2010/assert) - Assert for go test.
seanpont68662222014-12-14 19:58:15 -08001014 * [assert](https://github.com/seanpont/assert) - JUnit-like asserts with excellent error messages
Andrew Gerrand5bc444d2014-12-10 11:35:11 +11001015 * [downtest](https://github.com/jmcvetta/downtest) - Automatically run tests for all known downstream consumers of a Go package.
1016 * [go2xunit](https://bitbucket.org/tebeka/go2xunit) - Convert "go test -v" output to xunit XML output
1017 * [goautotest](https://github.com/ryanslade/goautotest) - Automatically run unit tests when code changes are made
1018 * [GoConvey](http://goconvey.co) - Browser-based reporting, uses ` go test `, supports traditional Go tests, clean DSL
1019 * [gocov](https://github.com/axw/gocov) - Code coverage testing/analysis tool
1020 * [ginkgo](https://github.com/onsi/ginkgo) - BDD Testing Framework for Go.
1021 * [Gocheck](http://labix.org/gocheck) - Rich test framework with suites, fixtures, assertions, good error reporting, etc
1022 * [gomega](https://github.com/onsi/gomega) - Ginkgo's Preferred Matcher Library.
1023 * [gomock](http://code.google.com/p/gomock/) - a mocking framework for Go.
1024 * [counterfeiter](https://github.com/maxbrunsfeld/counterfeiter) - Tool for generating self-contained and type-safe mocks.
1025 * [GoSpec](https://github.com/orfjackal/gospec) - a BDD framework
1026 * [gospecify](https://github.com/stesla/gospecify) - another BDD framework
1027 * [go-stat](https://github.com/mreiferson/go-stat) - performant instrumentation/profiling for Go
1028 * [go-tap](https://github.com/Merovius/go-tap) - TAP (Test Anything Protocol) parser in Go
1029 * [GSpec](https://github.com/hailiang/gspec) - _Expressive, reliable, concurrent and extensible_ Go test framework that makes it productive to organize and verify the mind model of software..
1030 * [Nitro](https://github.com/spf13/nitro) - A quick and simple profiler For Go
1031 * [testflight](https://github.com/drewolson/testflight) - Painless http testing in Go
1032 * [terst](https://github.com/robertkrimen/terst) - A terse, easy-to-use testing library for Go
1033 * [Testify](https://github.com/stretchrcom/testify) - A set of packages that provide many tools for testifying that your code will behave as you intend.
1034 * [Tideland CGL Asserts](http://code.google.com/p/tcgl/) - Make asserts during testing and inside of your applications
1035 * [go-assert](http://github.com/daviddengcn/go-assert) - Testing utils for Go.
1036 * [test2doc](https://code.google.com/p/test2doc/) - Generate documentation for your go units from your unit tests.
1037
1038## Virtual Machines and Languages
1039
1040 * [Gelo](http://code.google.com/p/gelo/) - Extensible, embeddable interpreter
1041 * [GoForth](https://github.com/ArtemTitoulenko/GoForth) - A simple Forth parser
1042 * [GoLightly](https://github.com/feyeleanor/GoLightly) - A flexible and lightweight virtual machine with runtime-configurable instruction set
1043 * [Golog](https://github.com/mndrix/golog) - Prolog interpreter in Go
1044 * [Minima](https://github.com/opesun/minima) - A language implemented in Go.
1045 * [RubyGoLightly](https://github.com/feyeleanor/RubyGoLightly) - An experimental port of TinyRb to Go
1046 * [forego](https://github.com/unixdj/forego) - Forth virtual machine
1047 * [go-python](https://github.com/sbinet/go-python) - go bindings for CPython C-API
1048 * [GoEmPHP](https://github.com/mikespook/goemphp) - This package is built for Embedding PHP into Go.
1049 * [goenv](https://github.com/smyrman/goenv) - Create an isolated environment where you install Go packages, binaries, or even C libraries. Very similar to virtualenv for Python.
1050 * [golemon](https://github.com/nsf/golemon) - A port of the Lemon parser-generator
1051 * [goll1e](https://github.com/realistschuckle/goll1e) - An LL(1) parser generator for the Go programming language.
1052 * [golua](https://github.com/afitz/golua) - Go wrapper for LUA's C API
1053 * [golua-fork](https://github.com/xenith-studios/golua) - A fork of GoLua that works on current releases of Go
1054 * [gotcl](http://code.google.com/p/gotcl/) - Tcl interpreter in Go
1055 * [meme](http://bitbucket.org/anacrolix/meme) - Scheme interpreter in Go
1056 * [ngaro](http://www.anarchyinthetubes.com/hg/go/ngaro) - A ngaro virtual machine to run retroForth images
1057 * [otto](https://github.com/robertkrimen/otto) - A JavaScript parser and interpreter written natively in Go
1058 * [monkey](https://github.com/realint/monkey) - Embed SpiderMonkey, the Mozilla JavaScript engine, in your Go program.
1059 * [go-v8](https://github.com/idada/go-v8) - V8 JavaScript engine bindings for Go
1060 * [gomruby](https://github.com/AlekSi/gomruby) - mruby (mini Ruby) bindings for Go
1061 * [LispEx](https://github.com/kedebug/LispEx) - A dialect of Lisp extended to support for concurrent programming, written in Go.
1062
1063
1064## Web Applications
1065
1066 * [Digestw](https://github.com/mocchira/digestw) - A Web Application - Twitter's Timeline Digest
1067 * [GoURLShortener](https://github.com/NickPresta/GoURLShortener) - A frontend for the http://is.gd/ URL shortener
1068 * [Hugo](https://github.com/spf13/hugo) - A fast and flexible static site generator implemented in Go
1069 * [Já Vai Tarde](https://github.com/nictuku/javaitarde) - Unfollows monitoring for Twitter
1070 * [fourohfourfound](https://github.com/whee/fourohfourfound/) - A fallback HTTP server that may redirect requests with runtime configurable redirections
1071 * [goals-calendar](https://github.com/nono/goals-calendar) - A web-based Seinfeld calendar implemented in Go
1072 * [goblog](https://github.com/begoon/begoon.github.com) - A static blog engine
1073 * [go\_spider](https://github.com/hu17889/go_spider) - A flexible ,modularization and concurrent web crawler framework.
1074 * [gocrawl](https://github.com/PuerkitoBio/gocrawl) - A polite, slim and concurrent web crawler.
1075 * [goflash](https://sourceforge.net/p/goflash/home/Home/) - Flash player implementation in Go language
1076 * [gogallery](http://code.google.com/p/gogallery/) - simple web server with an emphasis on easily browsing images
1077 * [goof](https://github.com/stone/goof) - A simple http server to exchange files over http (upload/download)
1078 * [gopages](http://code.google.com/p/gopages/) - A php-like web framework that allows embedding Go code in web pages
1079 * [kurz.go](https://github.com/fs111/kurz.go) - a url shortener based on web.go and redis
1080 * [Monsti](https://github.com/chrneumann/monsti) - Resource friendly flat file CMS for private and small business sites.
1081 * [now.go](https://github.com/alloy-d/now.go) - A simple HTTP-based to-do queue.
1082 * [sf\_server](http://code.google.com/p/rflk/source/browse/#svn%2Ftrunk%2Fsw%2FGo%2Fsend_file_go) - a tiny send file server and client
1083 * [webtf](http://code.google.com/p/webtf/) - Web app to graphical visualization of twitter timelines using the HTML5
1084 * [rabbitmq-http](https://github.com/smallfish/rabbitmq-http) - REST API for RabbitMQ
1085 * [freegeoip](https://github.com/fiorix/freegeoip) - IP geolocation web service (web server of freegeoip.net)
1086 * [websiteskeleton](https://github.com/jadekler/git-go-websiteskeleton) - Simple net/http website skeleton
1087
1088## Web Libraries
1089
1090#### Authentication
1091
1092 * [GOAuth](https://github.com/hokapoka/goauth) - OAuth Consumer
1093 * [goauth](https://github.com/alloy-d/goauth) - A library for header-based OAuth over HTTP or HTTPS.
1094 * [Go-OAuth](https://github.com/garyburd/go-oauth) - OAuth 1.0 client
1095 * [OAuth Consumer](https://github.com/mrjones/oauth) - OAuth 1.0 consumer implementation
1096 * [authcookie](https://github.com/dchest/authcookie) - Package authcookie implements creation and verification of signed authentication cookies.
1097 * [totp](https://github.com/balasanjay/totp) - Time-Based One-Time Password Algorithm, specified in RFC 6238, works with Google Authenticator
Dave Day0d6986a2014-12-10 15:02:18 +11001098 * [otp](http://tristanwietsma.github.io/otp/) - HOTP and TOTP library with command line replacement for Google Authenticator
Andrew Gerrand5bc444d2014-12-10 11:35:11 +11001099 * [dgoogauth](https://github.com/dgryski/dgoogauth) - Go port of Google's Authenticator library for one-time passwords
1100 * [go-http-auth](https://github.com/abbot/go-http-auth) - HTTP Basic and HTTP Digest authentication
1101 * [httpauth](https://github.com/apexskier/httpauth) - HTTP session (cookie) based authentication and authorization
1102 * [httpauth-go](https://bitbucket.org/rj/httpauth-go) - Package httpauth provides utilities to support HTTP authentication policies. Support for both the basic authentication scheme and the digest authentication scheme are provided.
1103 * [oauth1a](https://github.com/kurrik/oauth1a) - OAuth 1.0 client library
1104
1105#### DOM handling
1106
1107 * [Cascadia](http://code.google.com/p/cascadia) - CSS selector library
1108 * [GoQuery](https://github.com/PuerkitoBio/goquery) - jQuery-like DOM manipulation library, using Go's experimental HTML package.
1109 * [html-query](https://github.com/hailiang/html-query) - A fluent and functional approach to querying HTML.
1110 * [HTML Transform](http://code.google.com/p/go-html-transform/) - A CSS selector based html scraping and transformation library
1111
1112#### Frameworks and Toolkits
1113 * [arasu](https://github.com/arasuresearch/arasu) - A Lightning Fast Web Framework written on Go & Dart
1114 * [app.go](https://github.com/georgenava/appgo) - Web framework for google app engine
1115 * [Beego](http://beego.me/) - Beego is an open source version of the scalable, non-blocking web framework.
1116 * [browserspeak](https://github.com/xyproto/browserspeak) - Generate HTML templates, CSS or SVG without writing < or >
1117 * [falcore](https://github.com/fitstar/falcore) - Modular HTTP server framework
1118 * [fcgi\_client](https://bitbucket.org/PinIdea/fcgi_client) - Go fastcgi client with fcgi params support
1119 * [forgery](http://goforgery.appspot.com/) - A clone of the superb Node.js web framework Express.
1120 * [GEP](https://geps.daviddengcn.com/) - A simple web framework similar to JSP. Writing dynamic pages knowing only Go and HTML(or Markdown)
1121 * [Go-Blog](https://github.com/matt-west/go-blog) - Blog framework written in Go
1122 * [go-fastweb](http://code.google.com/p/go-fastweb/) - aims to be a simple, small and clean MVC framework for go
1123 * [go-rest](https://github.com/ungerik/go-rest) - A small and evil REST framework for Go
1124 * [go-restful](https://github.com/emicklei/go-restful) - lean package for building REST-style Web Services
1125 * [go-start](https://github.com/ungerik/go-start) - A high level web-framework for Go
1126 * [go-urlshortener](https://github.com/mattn/go-urlshortener) - interface to google's urlshorten API
1127 * [go-webproject](http://go-webproject.appspot.com) - Modular web application framework and app server
1128 * [goku](https://github.com/QLeelulu/goku) - a Web Mvc Framework for Go, mostly like ASP.NET MVC.
1129 * [Golanger](https://github.com/golangers/framework) - Golanger Web Framework is a lightweight framework for writing web applications in Go.
1130 * [Goldorak.Go](https://github.com/nono/Goldorak.Go) - a web miniframework built using mustache.go, web.go and Go-Redis
1131 * [GoRest](http://code.google.com/p/gorest/) - An extensive configuration(tags) based RESTful style web-services framework.
1132 * [gorilla](https://github.com/gorilla) - Gorilla web toolkit
1133 * [GoSrv](https://github.com/jcasts/gosrv) - A Go HTTP server that provides simple command line functionality, config loading, request logging, graceful connection shutdown, and daemonization.
1134 * [goweb](https://github.com/stretchrcom/goweb) - Lightweight RESTful web framework for Go providing Ruby on Rails style routing
1135 * [Gowut](http://code.google.com/p/gowut) - Go Web UI Toolkit is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go.
1136 * [HttpRouter](https://github.com/julienschmidt/httprouter) - A high performance HTTP request router that scales well
1137 * [mango](https://github.com/paulbellamy/mango) - Mango is a modular web-application framework for Go, inspired by Rack, and PEP333.
1138 * [Martini](https://github.com/codegangsta/martini) - Martini is a popular, lightweight, extensible package for writing modular web apps/services in Go
1139 * [Revel](http://robfig.github.com/revel/) - High productivity web framework modeled on Play! Framework
1140 * [restclient](https://github.com/jmcvetta/restclient) - Client library for interacting with RESTful APIs.
1141 * [Tideland CGL Web](http://code.google.com/p/tcgl/) - Package for RESTful web applications
1142 * [Tiger Tonic](https://github.com/rcrowley/go-tigertonic) - framework for building JSON web services inspired by Dropwizard
1143 * [trinity](https://github.com/cihub/trinity) - MVC framework
1144 * [sawsij](https://bitbucket.org/jaybill/sawsij/src) - Provides a small, opinionated web framework.
1145 * [web.go](https://github.com/hoisie/web) - a simple framework to write webapps
1146 * [wfdr](https://github.com/crazy2be/wfdr) - Simple web framework designed for and written in go. Works with other languages as well, but not as well.
1147 * [xweb](https://github.com/go-xweb/xweb) - A web framework for Go. Just like Struts for Java.
1148
1149#### HTML forms
1150
1151 * [Go-FORM-it](https://github.com/kirves/go-form-it) - Go library for easy and highly-customizable forms creation and template rendering.
1152 * [gforms](https://github.com/vmihailenco/gforms) - HTML forms for Go
1153 * [GoForms](https://github.com/absoludity/goforms) - Form data validation, cleaning and error reporting - a la django.forms
1154 * [htmlfiller](https://github.com/griffy/htmlfiller) - Fills in html forms with default values and errors a la Ian Bicking's htmlfill for Python
1155 * [MonstiForm](https://github.com/monsti/form) - HTML form generator and validator library
1156 * [xsrftoken](http://code.google.com/p/xsrftoken) - A package for generating and validating tokens used in preventing XSRF attacks
1157 * [revel-csrf](https://github.com/cbonello/revel-csrf) - Cross-Site Request Forgery (CSRF) attacks prevention for the Revel framework
1158
1159#### Public API Wrappers
1160
1161 * [adn](https://github.com/whee/adn/) - Interface to the App.net API
1162 * [anaconda](https://github.com/ChimeraCoder/anaconda) - Client library for the Twitter 1.1 API
1163 * [ddg](https://github.com/whee/ddg) - DuckDuckGo API interface
1164 * [gobo](https://github.com/huichen/gobo) - Client library for Sina Weibo
1165 * [gocaptcha](https://github.com/GeertJohan/gocaptcha) - gocaptcha provides easy access to the reCaptcha API in go
1166 * [go-dealmap](https://github.com/ancientlore/go-dealmap) - Go library for accessing TheDealMap's API
1167 * [go-dropbox](https://github.com/nickoneill/go-dropbox) - API library for dropbox
1168 * [facebook](https://github.com/huandu/facebook) - Up-to-date facebook graph API client. Handy and flexible
1169 * [firebase](https://github.com/cosn/firebase) - Client library for the Firebase REST API
1170 * [go-facebook](https://github.com/Agon/go-facebook) - Go implementations of facebook APIs
1171 * [go-flickr](https://github.com/mncaudill/go-flickr) - A wrapper for Flickr's API
1172 * [go-gravatar](https://github.com/ungerik/go-gravatar) - Wrapper for the Gravatar API
1173 * [go-libGeoIP](https://github.com/nranchev/go-libGeoIP) - GO Lib GeoIP API for Maxmind
1174 * [gominatim](https://github.com/grindhold/gominatim) - Go library to access nominatim geocoding services
1175 * [gomojo](https://github.com/dotmanish/gomojo) - Instamojo API wrapper
1176 * [gomwapi](https://github.com/kracekumar/go-mwapi) - Access mediawiki contents like wikipedia, wiktionary in golang
1177 * [googtrans](https://github.com/bthomson/googtrans) - unofficial go bindings for Google Translate API v2
1178 * [go-recaptcha](https://github.com/dpapathanasiou/go-recaptcha) - Handles reCaptcha form submissions in Go
1179 * [gorecurly](https://github.com/mbeale/gorecurly) - A Client app to use with Recurly's api
1180 * [go.strava](https://github.com/strava/go.strava) - Official client library for the Strava V3 API
1181 * [go.stripe](https://github.com/bradrydzewski/go.stripe) - a simple credit card processing library for Go using the Stripe API
1182 * [Gotank](https://github.com/searchify/gotank) - Searchify's Go client for the IndexTank full-text search API
1183 * [go-tripit](https://github.com/ancientlore/go-tripit) - Go API library for the TripIt web services
1184 * [GoTwilio](https://github.com/sfreiberg/gotwilio) - Twilio library for Go (golang). Very basic at the moment
1185 * [gravatar](https://github.com/ftrvxmtrx/gravatar) - Gravatar image/profile API library
1186 * [justintv](https://github.com/Agon/justintv) - Justin.tv REST API with oauth
1187 * [postmark](https://github.com/gcmurphy/postmark) - Access postmark API from Go
1188 * [reddit.go](https://github.com/tadzik/reddit.go) - Client library for Reddit API
1189 * [shorturl](https://github.com/subosito/shorturl) - Generic implementation for interacting with various URL shortening services
1190 * [Stack on Go](https://github.com/laktek/Stack-on-Go) - Go wrapper for Stack Exchange API
1191 * [stripe](https://github.com/stripe/stripe-go) - Official Stripe client library
1192 * [twilio](https://github.com/subosito/twilio) - Simple Twilio API wrapper
1193 * [twittergo](https://github.com/kurrik/twittergo) - Client library for Twitter's API
1194
1195#### Other
1196
1197 * [adhoc-http](https://github.com/tv42/adhoc-httpd) - Quick & dirty HTTP static file server
1198 * [assets](https://github.com/mostafah/assets) - Helps prepares CSS and JS files for development and production of Go web apps.
1199 * [bwl](https://github.com/bobappleyard/bwl) - a set of libraries to help build web sites
1200 * [captcha](https://github.com/dchest/captcha) - Image and audio captcha generator and server
1201 * [gaerecords](https://github.com/matryer/gae-records) - Lightweight wrapper around appengine/datastore providing Active Record and DBO style management of data
1202 * [get2ch-go](https://github.com/tanaton/get2ch-go) - a library to access the 2channel Japanese web bulletin board
1203 * [go-gzip-file-server](https://github.com/joaodasilva/go-gzip-file-server) - A net.http.Handler similar to FileServer that serves gzipped content
1204 * [go-httpclient](https://github.com/mreiferson/go-httpclient) - a Go HTTP client with timeouts
1205 * [go-pkg-rss](https://github.com/jteeuwen/go-pkg-rss) - a packages that reads RSS and Atom feeds
1206 * [go-rss](https://github.com/ungerik/go-rss) - Simple RSS parser, tested with Wordpress feeds.
1207 * [go-twitter](https://github.com/jb55/go-twitter) - another Twitter client
1208 * [go-twitter-oauth](https://github.com/montsamu/go-twitter-oauth) - a simple Twitter client (supports OAuth)
1209 * [gohaml](https://github.com/realistschuckle/gohaml) - An implementation of the popular XHTML Abstraction Markup Language using the Go language.
1210 * [gojwt](https://github.com/mzgoddard/gojwt) - Json Web Tokens for Go
1211 * [goreman](https://github.com/mattn/goreman) - foreman clone
1212 * [goroute](https://github.com/johncylee/goroute) - A very simple URL router based on named submatches of regular expression that works well with http.Handler .
1213 * [gorouter](https://github.com/rsentry/gorouter) - Simple router for go to process url variables
1214 * [goscribble](https://github.com/amir/goscribble) - An MPD Audioscrobble
1215 * [grender](https://github.com/peterbourgon/grender) - Go static site generator
1216 * [halgo](https://github.com/jagregory/halgo) - [HAL](http://stateless.co/hal_specification.html)-compliant API client and serialisation library.
1217 * [http-gonsole](https://github.com/mattn/http-gonsole) - Speak HTTP like a local. (the simple, intuitive HTTP console, golang version)
1218 * [httprpc](https://github.com/kdar/httprpc) - HTTP RPC codecs (json2, soap, rest)
1219 * [HypeCMS](https://github.com/opesun/hypecms) - A flexible CMS built with Go and MongoDb.
1220 * [Kontl](https://github.com/geovedi/kontl) - A client for kon.tl's URL shortening service
1221 * [mustache.go](https://github.com/hoisie/mustache.go) - an implementation of the Mustache template language
1222 * [muxer](http://code.google.com/p/go-muxer/) - Simple muxer for a Go app without regexp
1223 * [Optimus Sitemap Generator](http://patrickmylund.com/projects/osg/) - A universal XML sitemap generator
1224 * [passwordreset](https://github.com/dchest/passwordreset) - Creation and verification of secure tokens useful for implementation of "reset forgotten password" feature in web applications.
1225 * [pat](https://github.com/bmizerany/pat) - A Sinatra style pattern muxer
1226 * [persona](https://github.com/areed/persona) - remote verification API for persona
1227 * [plex](https://bitbucket.org/agallego/plex) - simple, small, light, regexp http muxer with chaining
1228 * [purell](https://github.com/PuerkitoBio/purell) - tiny Go library to normalize URLs
1229 * [pusher.go](https://github.com/madari/pusher.go) - HTTP Server Push module for the standard http package
1230 * [rest.go (forked)](https://github.com/Kissaki/rest.go) - forked rest.go for improvements and REST consistency
1231 * [rest2go](https://github.com/Kissaki/rest2go) - Based on rest.go, forked for improvements and REST consistency
1232 * [robotstxt](https://github.com/temoto/robotstxt-go) - The robots.txt exclusion protocol implementation. Allows to parse and query robots.txt file.
1233 * [seshcookie](https://github.com/bpowers/seshcookie) - A web session library inspired by Beaker
1234 * [user\_agent](https://github.com/mssola/user_agent) - An HTTP User-Agent parser
1235 * [webdriver](https://bitbucket.org/tebeka/selenium/src) - WebDriver (Selenium) client
1236 * [webtestutil](https://github.com/chlu/webtestutil) - Web and HTTP functional testing utilities. Includes Gorilla testing support.
1237 * [gorefit](http://code.google.com/p/gorefit/) - A library for theming existing websites
1238 * [GoRequest](https://github.com/parnurzeal/gorequest) - Simplified HTTP client with rich features such as proxy, timeout, and etc. ( inspired by nodejs SuperAgent )
1239
1240## Windows
1241
1242 * [Windows Command Line Shutdow](http://software-download.name/2012/windows-command-line-shutdown/) - A tool to shutdown Windows Computer from Command Prompt
1243 * [gform](https://github.com/AllenDang/gform) - An easy to use Windows GUI toolkit for Go
1244 * [go-Windows-begin](https://github.com/yoffset/absolute-Windows---Go-Language-beginner) - for the absolute Windows-Go beginner
1245 * [go-ole](https://github.com/mattn/go-ole/) - win32 ole implementation for golang
1246 * [w32](https://github.com/AllenDang/w32) - Windows API wrapper for Go.
1247 * [walk](https://github.com/lxn/walk) - "Windows Application Library Kit" for the Go Programming Language
1248
1249## Unix
1250 * [unixsums](https://github.com/cxmcc/unixsums) - Legacy Unix checksums: cksum, sum
1251 * [inspect](https://github.com/measure/inspect) - Linux and MacOSX systems monitoring and diagnostics
1252
1253## Unsorted; please help!
1254
1255The following entries have not been filed. Please help by putting these in relevant categories.
1256
1257 * [Twackup](https://github.com/tv42/twackup) - Backs up your tweets into local files
1258 * [domainerator](https://github.com/hgfischer/domainerator) - Command line tool to combine wordlist and suffixes/TLDs into domain names and check if they are registered or not
1259 * [ebml-go](http://code.google.com/p/ebml-go/) - EBML decoder
1260 * [gmail2go](https://github.com/rif/gmail2go) - Simple gmail multiple accounts cli mail checker
1261 * [go-bindata](https://github.com/jteeuwen/go-bindata) - Converts any file into manageable Go source code for embedding binary data into a Go program.
1262 * [go-cron](https://github.com/rk/go-cron) - A small cron job system to handle scheduled tasks, such as optimizing databases or kicking idle users from chat. The cron.go project was renamed to this for ` go get ` compatibility.
1263 * [go-gmetric](https://github.com/jbuchbinder/go-gmetric) - Ganglia gmetric protocol support
1264 * [go-nat-pmp](http://code.google.com/p/go-nat-pmp/) - A client for the NAT-PMP protocol used in Apple and open-source routers
1265 * [go-webfinger](https://github.com/ant0ine/go-webfinger) - Simple Client Implementation of WebFinger
1266 * [go.psl](https://github.com/ebfe/go.psl) - Go regdom-libs/public suffix list
1267 * [goconsistenthash](https://github.com/caglar10ur/goconsistenthash) - Consistent hashing library (based on http://www.lexemetech.com/2007/11/consistent-hashing.html)
1268 * [godebiancontrol](https://github.com/mstap/godebiancontrol) - Golang debian control file parser
1269 * [gographviz](http://code.google.com/p/gographviz) - Graphviz DOT language parser for golang
1270 * [golor](https://github.com/hantuo/golor) - golor is a command line tool for golang source code coloring
1271 * [gopcapreader](http://code.google.com/p/gopcapreader) - Presents realtime pcap data as io.Reader objects
1272 * [gostax](https://github.com/maxymania/gostax) - A Streaming API for XML (StAX) in go
1273 * [httptail](https://github.com/smallfish/httptail) - tools push stdout/stderr to http chunked
1274 * [humanize](https://bitbucket.org/dchapes/humanize) - formats large numbers into human readable small numbers
1275 * [humanize-bytes](https://github.com/tv42/humanize-bytes) - Command-line utilities to convert "MiB" etc to raw numbers, and back
1276 * [img-LinuxFr.org](https://github.com/nono/img-LinuxFr.org) - A reverse-proxy cache for external images used on LinuxFr.org
1277 * [netstat-nat](https://github.com/dominikh/netstat-nat) - Display NAT entries on Linux systems
1278 * [seed](https://github.com/tv42/seed) - Easily seed PRNGs with some entropy
1279 * [spellabc](https://github.com/elasticdog/spellabc) - Package spellabc implements spelling alphabet code word encoding.
1280 * [stressdisk](https://github.com/ncw/stressdisk) - Stress test your disks / memory cards / USB sticks before trusting your valuable data to them
1281 * [validation](https://github.com/kdar/validation) - Simple independent struct/key-value validation