irc-go/README.md

24 lines
1.6 KiB
Markdown
Raw Normal View History

2016-01-16 16:45:59 +00:00
# gIRC-go
2016-01-18 04:18:38 +00:00
This is a bunch of self-contained packages that help with IRC development in Go. The package splits themselves are fairly similar to how things are split up in the [original Python version](https://github.com/DanielOaks/girc).
2016-01-17 08:50:59 +00:00
---
2016-02-15 15:14:49 +00:00
[![GoDoc](https://godoc.org/github.com/DanielOaks/girc-go?status.svg)](https://godoc.org/github.com/DanielOaks/girc-go) [![Build Status](https://travis-ci.org/DanielOaks/girc-go.svg?branch=master)](https://travis-ci.org/DanielOaks/girc-go) [![Coverage Status](https://coveralls.io/repos/DanielOaks/girc-go/badge.svg?branch=master&service=github)](https://coveralls.io/github/DanielOaks/girc-go?branch=master) [![Go Report
Card](https://goreportcard.com/badge/github.com/DanielOaks/girc-go)](https://goreportcard.com/report/github.com/DanielOaks/girc-go)
2016-01-17 08:50:59 +00:00
---
2016-01-18 06:58:02 +00:00
I'm aiming for this to become a client library all of its own. The best path to that is writing a bunch of useful, testable, self-contained packages that I'm able to wire together!
2016-01-18 04:18:38 +00:00
These packages are still in their early stages. Specifically, they're probably not as well-optimised as we'd like.
2016-01-17 02:57:36 +00:00
2016-01-18 04:18:38 +00:00
An example bot that uses these packages can be found [here](https://gist.github.com/DanielOaks/cbbc957e8dba39f59d9e).
2016-01-17 03:00:11 +00:00
2016-01-17 02:57:36 +00:00
Packages:
2016-01-17 07:04:34 +00:00
* [**eventmgr**](https://godoc.org/github.com/DanielOaks/girc-go/eventmgr): Event attaching and dispatching.
2016-01-18 03:25:54 +00:00
* [**ircfmt**](https://godoc.org/github.com/DanielOaks/girc-go/ircfmt): IRC format codes handling, escaping and unescaping.
2016-01-18 11:20:02 +00:00
* [**ircmap**](https://godoc.org/github.com/DanielOaks/girc-go/ircmap): IRC string casefolding.
2016-01-17 02:57:36 +00:00
* [**ircmsg**](https://godoc.org/github.com/DanielOaks/girc-go/ircmsg): IRC message handling, raw line parsing and creation.