1.0.1 • Published 9 years ago

irc-protocol v1.0.1

Weekly downloads
2
License
BSD
Repository
github
Last release
9 years ago

IRC-Protocol build status

Streaming parser and serialiser for IRC protocol data.

Overview

This module allows you to consume and produce IRC protocol messages. It doesn't contain any logic, leaving that up to the developer. Also everything is streams.

Installation

Available via npm:

$ npm install irc-protocol

Or via git:

$ git clone git://github.com/deoxxa/irc-protocol.git node_modules/irc-protocol

Usage

Also see proxy.js.

#!/usr/bin/env node

var net = require("net"),
    IRCProtocol = require("./index");

var server = net.createServer(function(local) {
  var local_parser = new IRCProtocol.Parser(),
      remote_parser = new IRCProtocol.Parser(),
      local_serialiser = new IRCProtocol.Serialiser(),
      remote_serialiser = new IRCProtocol.Serialiser();

  var remote = net.createConnection(6667, "127.0.0.1");

  local.pipe(local_parser).pipe(local_serialiser).pipe(remote);
  remote.pipe(remote_parser).pipe(remote_serialiser).pipe(local);

  local_serialiser.on("data", function(data) { process.stdout.write(">> " + data); });
  remote_serialiser.on("data", function(data) { process.stdout.write("<< " + data); });
});

server.listen(6668);

License

3-clause BSD. A copy is included with the source.

Contact

1.0.1

9 years ago

1.0.0

9 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.0.1

11 years ago