0.2.4 • Published 7 years ago

irc-dcc v0.2.4

Weekly downloads
1
License
GPL-3.0
Repository
github
Last release
7 years ago

DCC Support for node-irc

Build Status Documentation Status Build status Libraries.io for GitHub Dependency Status npm GitHub issues Coverage Status

A Simple DCC Echo Client Example

const irc = require('irc');
const DCC = require('irc-dcc');

client = new irc.Client('irc.server.net', 'MyNickname', { channels: ['#a_channel'] })
dcc = new DCC(client);

client.on('dcc-chat', (from, args, message) => {
    dcc.acceptChat(args.host, args.port, (chat) => {
        chat.on("line", (line) => {
            chat.say("You said: " + line);
        });
    });
});
0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago