Simple Hacker News client for Go. Currently only supports reading from Hacker News.
hn := hackernews.New()
ctx := context.Background()
stories, err := hn.FrontPage(ctx)
hn := hackernews.New()
ctx := context.Background()
stories, err := hn.Newest(ctx)
hn := hackernews.New()
ctx := context.Background()
story, err := hn.Find(ctx, 1)
go get -u github.com/matthewmueller/hackernews
- Matt Mueller @mattmueller
MIT