https://github.com/hyperimpose/irc
IRC client library. The project aims to abstract the IRC protocol completely and provide easy access to the state of the connection. It can be used to implement any kind of service.
https://github.com/hyperimpose/irc
client erlang hyperimpose irc irc-client
Last synced: 3 days ago
JSON representation
IRC client library. The project aims to abstract the IRC protocol completely and provide easy access to the state of the connection. It can be used to implement any kind of service.
- Host: GitHub
- URL: https://github.com/hyperimpose/irc
- Owner: hyperimpose
- License: agpl-3.0
- Created: 2024-01-19T21:23:05.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-02-22T15:46:09.000Z (4 months ago)
- Last Synced: 2026-02-22T20:41:57.031Z (4 months ago)
- Topics: client, erlang, hyperimpose, irc, irc-client
- Language: Erlang
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: COPYING
Awesome Lists containing this project
README
#+OPTIONS: ^:nil
* irc
*This is a pre-release version and its API may break*
An irc client library for Erlang 28 or later.
** Main Features
Some of the features offered are:
- An extensive implementation of the IRC protocol
- ISUPPORT, IRCv3, CTCP support
- Easy access to the connection state
- Multiple connections
** Install
You can include this library in your projects as a dependency in rebar.config:
#+BEGIN_SRC erlang
{deps, [%% ... Other dependencies
{irc, {git, "https://github.com/hyperimpose/irc.git", {branch, "master"}}}]}.
#+END_SRC
** Documentation
The library is documented using ExDoc. To build the documentation run:
#+BEGIN_SRC bash
$ rebar3 ex_doc
#+END_SRC
You can view the generated configuration in ~doc/exdoc/~.
** License
irc is licensed under the [[https://www.gnu.org/licenses/agpl-3.0.html][GNU Affero General Public License version 3 (AGPLv3)]].
#+BEGIN_CENTER
[[https://www.gnu.org/graphics/agplv3-with-text-162x68.png]]
#+END_CENTER
A copy of this license is included in the file [[../../COPYING][COPYING]].