0.3.2 • Published 10 years ago

irc-stream v0.3.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

irc-stream

npm status build status dependency status coverage status

irc-stream is a minimalistic, streaming bot wrapper for the irc module.

irc-stream will relay any combination of the following:

  • channel messages addressed to the client (default on)
  • pms (default off)

These messages are available as a readable stream, and can thus be piped into a writable stream. Messages can be written like for a writable stream, and messages sent will be sent in the channel/pm.

Usage

Ideally, use it with gu as both a readable and writable stream:

var ircStream = require('irc-stream')(ircServer, ircName, ircModuleOpts, ircStreamOpts);
var gu = require('gu')(scriptPath, scriptFiles);

ircStream.pipe(gu).pipe(ircStream);

Where the first three irc-stream arguments are simply passed through to the irc module.

Alternatively you could use it as just a readable stream or a writable stream. See flight-stream for an example as using it as a writable stream only.

Options

The fourth argument control how we listen on IRC. By default the following options are all disabled or zero:

{
  allErrors: Boolean, // manually handle `irc` error events
  ignoreChannel: Boolean, // ignore channel directed messages
  answerPms: Boolean, // respond to private messages
  neverHighlight: Boolean // never highlight channel responses
  alwaysHighlight: Boolean // always highlight channel responses
  participationChance: Number // probability to respond without being addressed
}

NB: Can only do one of neverHighlight and alwaysHighlight. By default, irc-stream will highlight the channel recipient on the first message only.

Installation

$ npm install irc-stream

License

MIT-Licensed. See LICENSE file for details.

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

12 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.1

12 years ago