dbrawirc
v0.1.1
Published
Read from an IRC socket
Downloads
3
Readme
dbrawirc - Read from an IRC socket.
######Example:
"use strict";
const dbrawirc = require('dbrawirc');
const events = require('events');
class Bot extends events.EventEmitter {
constructor(opts) {
super();
this.nick = opts.nick;
this.socket = new dbrawirc.client();
}
}
let bot = new Bot();
If you would like to contribute to this project, feel free to!