Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/songgao/colorgo
Colorize (highlight) `go build` command output
https://github.com/songgao/colorgo
go
Last synced: 3 months ago
JSON representation
Colorize (highlight) `go build` command output
- Host: GitHub
- URL: https://github.com/songgao/colorgo
- Owner: songgao
- Created: 2013-02-14T18:06:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-07-18T23:02:45.000Z (over 4 years ago)
- Last Synced: 2024-07-30T01:10:07.893Z (3 months ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 104 KB
- Stars: 112
- Watchers: 6
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-go-tools - colorgo - A wrapper around `go` command for colorized `go build` output. (Go Compile Helpers / Contents)
- awesome-go - colorgo - Colorize (highlight) `go build` command output - ★ 94 (Go Tools)
- awesome-go-extra - colorgo - 02-14T18:06:10Z|2020-07-18T23:02:45Z| (Go Tools / Routers)
README
# colorgo
`colorgo` is a wrapper to `go` command that colorizes output from `go build` and `go test`.
![screenshot 1](http://songgao.github.com/colorgo/images/screenshot1.png)# Installation
```
go get -u github.com/songgao/colorgo
```# Usage
```bash
colorgo build
```# alias
`colorgo` changes nothing to sub-commands other than `go build`. So you can optionally define alias in your shell conf so that `go build` always prints colorized error message:bash: `~/.bashrc`
```
alias go=colorgo
```fish-shell: `~/.config/fish/config.fish`
```
alias go colorgo
```# License
[BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause)