Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enova/tokyo
A collection of general-purpose Go packages
https://github.com/enova/tokyo
Last synced: about 1 month ago
JSON representation
A collection of general-purpose Go packages
- Host: GitHub
- URL: https://github.com/enova/tokyo
- Owner: enova
- License: mit
- Created: 2016-01-12T20:37:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T16:33:33.000Z (over 6 years ago)
- Last Synced: 2024-06-20T17:48:23.299Z (6 months ago)
- Language: Go
- Homepage:
- Size: 84 KB
- Stars: 5
- Watchers: 27
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tokyo
A collection of general-purpose Go packages and commands
```
alert - package to send alert messages from your application
args - package to make handling command-line arguments easier
cfg - package to parse configuration files
dbl - package to help avoid indeterminacy when dealing with floating-point numbers
details - package to help control logging of details in Go apps
jwalker - package to walk JSON-encoded data
lax - package containing a potpourri of utility functions commonly used by some of the authors
preprdsql - package that provides a way to seperate your SQL statements from your code
set - package that implements a Set container (of strings)
spawn - package that allows users to execute multiple shell commands in parallel
stopwatch - package that implements a simple stopwatch for inline benchmarkingcols - command-line tool to help parse CSV and tabular data
spawn - command-line tool to spawn multiple processes in parallel
```# Building
The standard Go build-tools should work:
```
go test ./...
go build ./...
go install ./...
```
A few convenience scripts have been included as well:- Run `./go_get.sh` to fetch all prerequisite packages including the `golint` command
- Run `./build.sh` to run the linter, formatter and test-suite
- Run `./install.sh` to install all commands to your go-path bin# Licensing
Tokyo is released by [Enova](http://www.enova.com) under the
[MIT License](https://github.com/enova/tokyo/blob/master/LICENSE).