totallymike / ircnode

Extensible IRC bot written with node.js
https://github.com/totallymike/ircnode/wiki
MIT License
4 stars 2 forks source link

Needs easier ways to handle basic IRC actions. #3

Closed totallymike closed 12 years ago

totallymike commented 12 years ago

I'd like to have ways to perform basic IRC actions without using irc.socket.write().

For one it's too easy to forget to append the carriage-return/line-feed to the end of messages.

For another, the bot doesn't have any simple way to control which channels it joins, etc.

totallymike commented 12 years ago

Getting there. Almost completely abstract out writing to the actual socket. More commands need functions, however, such as PART, JOIN, etc.

totallymike commented 12 years ago

Valter wrapped most of these up. I'm sure we'll find missing actions soon enough.