irc-go/README.md

32 lines
2.2 KiB
Markdown
Raw Normal View History

# gIRC-Go
2016-01-16 16:45:59 +00:00
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
---
[![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!
These packages are still in their early stages. Specifically, they're probably not as well-optimised as we'd like, and the interfaces exposed by them may not be final. For specific package details, view the documentation of that package.
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:
* [**gircclient**](https://godoc.org/github.com/DanielOaks/girc-go/client): Very work-in-progress client library.
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-09-17 08:19:12 +00:00
* [**ircmatch**](https://godoc.org/github.com/DanielOaks/girc-go/ircmatch): IRC string matching (mostly just a globbing engine).
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.
2016-11-28 06:27:27 +00:00
* [**ircutils**](https://godoc.org/github.com/DanielOaks/girc-go/ircutils): Useful utility functions and classes that don't fit into their own packages.
---
Also check out the eventmgr library [here](https://godoc.org/github.com/DanielOaks/eventmgr), which helps with event attaching and dispatching.