Directories
      ¶
    
    | Path | Synopsis | 
|---|---|
| 
       codegangsta
        | 
      |
| 
         
          
            cli
            
            
          
           
      Package cli provides a minimal framework for creating and organizing command line Go applications. 
         | 
      Package cli provides a minimal framework for creating and organizing command line Go applications. | 
| 
       davecgh
        | 
      |
| 
         
          
            go-spew/spew
            
            
          
           
      Package spew implements a deep pretty printer for Go data structures to aid in debugging. 
         | 
      Package spew implements a deep pretty printer for Go data structures to aid in debugging. | 
| 
       ethereum
        | 
      |
| 
       gizak
        | 
      |
| 
         
          
            termui
            
            
          
           
      Package termui is a library designed for creating command line UI. 
         | 
      Package termui is a library designed for creating command line UI. | 
| 
       hashicorp
        | 
      |
| 
         
          
            golang-lru
            
            
          
           
      This package provides a simple LRU cache. 
         | 
      This package provides a simple LRU cache. | 
| 
       huin
        | 
      |
| 
         
          
            goupnp
            
            
          
           
      goupnp is an implementation of a client for various UPnP services. 
         | 
      goupnp is an implementation of a client for various UPnP services. | 
| 
         
          
            goupnp/cmd/example_httpu_serving
            
            command
          
          
         
       | 
      |
| 
         
          
            goupnp/dcps/internetgateway1
            
            
          
           
      Client for UPnP Device Control Protocol Internet Gateway Device v1. 
         | 
      Client for UPnP Device Control Protocol Internet Gateway Device v1. | 
| 
         
          
            goupnp/dcps/internetgateway2
            
            
          
           
      Client for UPnP Device Control Protocol Internet Gateway Device v2. 
         | 
      Client for UPnP Device Control Protocol Internet Gateway Device v2. | 
| 
         
          
            goupnp/example
            
            
          
           
      Serves as examples of using the goupnp library. 
         | 
      Serves as examples of using the goupnp library. | 
| 
       jackpal
        | 
      |
| 
       kardianos
        | 
      |
| 
         
          
            osext
            
            
          
           
      Extensions to the standard "os" package. 
         | 
      Extensions to the standard "os" package. | 
| 
       mattn
        | 
      |
| 
         
          
            go-isatty
            
            
          
           
      Package isatty implements interface to isatty 
         | 
      Package isatty implements interface to isatty | 
| 
       nsf
        | 
      |
| 
         
          
            termbox-go
            
            
          
           
      termbox is a library for creating cross-platform text-based interfaces 
         | 
      termbox is a library for creating cross-platform text-based interfaces | 
| 
       peterh
        | 
      |
| 
         
          
            liner
            
            
          
           
      Package liner implements a simple command line editor, inspired by linenoise (https://github.com/antirez/linenoise/). 
         | 
      Package liner implements a simple command line editor, inspired by linenoise (https://github.com/antirez/linenoise/). | 
| 
       rcrowley
        | 
      |
| 
         
          
            go-metrics
            
            
          
           
      Go port of Coda Hale's Metrics library <https://github.com/rcrowley/go-metrics> Coda Hale's original work: <https://github.com/codahale/metrics> 
         | 
      Go port of Coda Hale's Metrics library <https://github.com/rcrowley/go-metrics> Coda Hale's original work: <https://github.com/codahale/metrics> | 
| 
         
          
            go-metrics/cmd/metrics-bench
            
            command
          
          
         
       | 
      |
| 
         
          
            go-metrics/cmd/metrics-example
            
            command
          
          
         
       | 
      |
| 
         
          
            go-metrics/cmd/never-read
            
            command
          
          
         
       | 
      |
| 
         
          
            go-metrics/stathat
            
            
          
           
      Metrics output to StatHat. 
         | 
      Metrics output to StatHat. | 
| 
       robertkrimen
        | 
      |
| 
         
          
            otto
            
            
          
           
      Package otto is a JavaScript parser and interpreter written natively in Go. 
         | 
      Package otto is a JavaScript parser and interpreter written natively in Go. | 
| 
         
          
            otto/ast
            
            
          
           
      Package ast declares types representing a JavaScript AST. 
         | 
      Package ast declares types representing a JavaScript AST. | 
| 
         
          
            otto/dbg
            
            
          
           
      Package dbg is a println/printf/log-debugging utility library. 
         | 
      Package dbg is a println/printf/log-debugging utility library. | 
| 
         
          
            otto/file
            
            
          
           
      Package file encapsulates the file abstractions used by the ast & parser. 
         | 
      Package file encapsulates the file abstractions used by the ast & parser. | 
| 
         
          
            otto/otto
            
            command
          
          
         
       | 
      |
| 
         
          
            otto/parser
            
            
          
           
      Package parser implements a parser for JavaScript. 
         | 
      Package parser implements a parser for JavaScript. | 
| 
         
          
            otto/registry
            
            
          
           
      Package registry is an expirmental package to facillitate altering the otto runtime via import. 
         | 
      Package registry is an expirmental package to facillitate altering the otto runtime via import. | 
| 
         
          
            otto/terst
            
            
          
           
      Package terst is a terse (terst = test + terse), easy-to-use testing library for Go. 
         | 
      Package terst is a terse (terst = test + terse), easy-to-use testing library for Go. | 
| 
         
          
            otto/test
            
            command
          
          
         
       | 
      |
| 
         
          
            otto/token
            
            
          
           
      Package token defines constants representing the lexical tokens of JavaScript (ECMA5). 
         | 
      Package token defines constants representing the lexical tokens of JavaScript (ECMA5). | 
| 
         
          
            otto/underscore
            
            
          
           
      Package underscore contains the source for the JavaScript utility-belt library. 
         | 
      Package underscore contains the source for the JavaScript utility-belt library. | 
| 
       rs
        | 
      |
| 
         
          
            cors
            
            
          
           
      Package cors is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/ You can configure it by passing an option struct to cors.New: c := cors.New(cors.Options{ AllowedOrigins: []string{"foo.com"}, AllowedMethods: []string{"GET", "POST", "DELETE"}, AllowCredentials: true, }) Then insert the handler in the chain: handler = c.Handler(handler) See Options documentation for more options. 
         | 
      Package cors is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/ You can configure it by passing an option struct to cors.New: c := cors.New(cors.Options{ AllowedOrigins: []string{"foo.com"}, AllowedMethods: []string{"GET", "POST", "DELETE"}, AllowCredentials: true, }) Then insert the handler in the chain: handler = c.Handler(handler) See Options documentation for more options. | 
| 
         
          
            cors/examples/alice
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/default
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/goji
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/martini
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/negroni
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/nethttp
            
            command
          
          
         
       | 
      |
| 
         
          
            cors/examples/openbar
            
            command
          
          
         
       | 
      |
| 
       syndtr
        | 
      |
| 
         
          
            goleveldb/leveldb
            
            
          
           
      Package leveldb provides implementation of LevelDB key/value database. 
         | 
      Package leveldb provides implementation of LevelDB key/value database. | 
| 
         
          
            goleveldb/leveldb/cache
            
            
          
           
      Package cache provides interface and implementation of a cache algorithms. 
         | 
      Package cache provides interface and implementation of a cache algorithms. | 
| 
         
          
            goleveldb/leveldb/comparer
            
            
          
           
      Package comparer provides interface and implementation for ordering sets of data. 
         | 
      Package comparer provides interface and implementation for ordering sets of data. | 
| 
         
          
            goleveldb/leveldb/errors
            
            
          
           
      Package errors provides common error types used throughout leveldb. 
         | 
      Package errors provides common error types used throughout leveldb. | 
| 
         
          
            goleveldb/leveldb/filter
            
            
          
           
      Package filter provides interface and implementation of probabilistic data structure. 
         | 
      Package filter provides interface and implementation of probabilistic data structure. | 
| 
         
          
            goleveldb/leveldb/iterator
            
            
          
           
      Package iterator provides interface and implementation to traverse over contents of a database. 
         | 
      Package iterator provides interface and implementation to traverse over contents of a database. | 
| 
         
          
            goleveldb/leveldb/journal
            
            
          
           
      Package journal reads and writes sequences of journals. 
         | 
      Package journal reads and writes sequences of journals. | 
| 
         
          
            goleveldb/leveldb/memdb
            
            
          
           
      Package memdb provides in-memory key/value database implementation. 
         | 
      Package memdb provides in-memory key/value database implementation. | 
| 
         
          
            goleveldb/leveldb/opt
            
            
          
           
      Package opt provides sets of options used by LevelDB. 
         | 
      Package opt provides sets of options used by LevelDB. | 
| 
         
          
            goleveldb/leveldb/storage
            
            
          
           
      Package storage provides storage abstraction for LevelDB. 
         | 
      Package storage provides storage abstraction for LevelDB. | 
| 
         
          
            goleveldb/leveldb/table
            
            
          
           
      Package table allows read and write sorted key/value. 
         | 
      Package table allows read and write sorted key/value. | 
| 
         
          
            goleveldb/leveldb/util
            
            
          
           
      Package util provides utilities used throughout leveldb. 
         | 
      Package util provides utilities used throughout leveldb. | 
| 
         
          
            gosnappy/snappy
            
            
          
           
      Package snappy implements the snappy block-based compression format. 
         | 
      Package snappy implements the snappy block-based compression format. | 
 Click to show internal directories. 
   Click to hide internal directories.