Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caarlos0/timea.go
timea.go (did you see what I did there?) is a simple library to print given times in "time ago" manner.
https://github.com/caarlos0/timea.go
golang golang-library time
Last synced: 5 days ago
JSON representation
timea.go (did you see what I did there?) is a simple library to print given times in "time ago" manner.
- Host: GitHub
- URL: https://github.com/caarlos0/timea.go
- Owner: caarlos0
- License: mit
- Created: 2021-08-14T23:22:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T14:04:52.000Z (5 months ago)
- Last Synced: 2024-11-07T16:43:02.469Z (13 days ago)
- Topics: golang, golang-library, time
- Language: Go
- Homepage:
- Size: 41 KB
- Stars: 47
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# timea.go
[![Build Status](https://img.shields.io/github/actions/workflow/status/caarlos0/timea.go/build.yml?style=for-the-badge)](https://github.com/caarlos0/timea.go/actions?workflow=build)
[![Coverage Status](https://img.shields.io/codecov/c/gh/caarlos0/timea.go.svg?logo=codecov&style=for-the-badge)](https://codecov.io/gh/caarlos0/timea.go)
[![](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://pkg.go.dev/github.com/caarlos0/timea.go)`timea.go` (_did you see what I did there?_) is a simple and 0-dependencies
library to print given times in "time ago" manner.## Usage
Get it:
```sh
go get github.com/caarlos0/timea.go
```Use it:
```go
package mainimport (
"fmt"
"time"timeago "github.com/caarlos0/timea.go"
)func main() {
fmt.Println(timeago.Of(time.Now().Add(-5 * time.Second))) // 5 seconds ago
fmt.Println(timeago.Of(time.Now().Add(5 * time.Second))) // 5 seconds from now
}
```You may also check the [go docs](https://pkg.go.dev/github.com/caarlos0/timea.go)
for advanced usage, like custom precision and string templates.## Stargazers over time
[![Stargazers over time](https://starchart.cc/caarlos0/timea.go.svg)](https://starchart.cc/caarlos0/timea.go)