Libraries to help with IRC development in Go. Mirror/fork of https://github.com/ergochat/irc-go https://github.com/ergochat/irc-go
irc
Go to file
2017-12-29 11:19:27 +10:00
client client: remove extraneous ParseDuration call 2017-08-12 17:46:13 -07:00
ircfmt ircfmt: Add Reverse Colour (0x16) 2017-12-29 11:19:27 +10:00
ircmap Remove the alpha notifications on a bunch of libs,t hey're stable now 2017-08-09 08:32:11 +10:00
ircmatch Rename deps 2017-06-15 10:10:39 -06:00
ircmsg ircmsg: add ParseTags function to allow parsing of tag-like strings arbitrarily 2017-08-24 08:39:31 +10:00
ircutils Add ircutils package 2016-11-28 16:27:27 +10:00
.gitignore Add gitignore 2016-01-17 09:30:46 +10:00
.travis.yml travis: Cover all submodules 2016-01-17 18:47:34 +10:00
doc.go Rename lib 2017-06-15 10:21:10 -06:00
LICENSE Rename lib 2017-06-15 10:21:10 -06:00
README.md Rename lib 2017-06-15 10:21:10 -06:00

GoshuIRC-Go

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.


GoDoc Build Status Coverage Status Go Report Card


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.

An example bot that uses these packages can be found here.

Packages:

  • gircclient: Very work-in-progress client library.
  • ircfmt: IRC format codes handling, escaping and unescaping.
  • ircmap: IRC string casefolding.
  • ircmatch: IRC string matching (mostly just a globbing engine).
  • ircmsg: IRC message handling, raw line parsing and creation.
  • ircutils: Useful utility functions and classes that don't fit into their own packages.

Also check out the eventmgr library here, which helps with event attaching and dispatching.