Open haadcode opened 8 years ago
Funny, I thought the same thing. I created this prototype about two weeks ago: https://gist.github.com/kobigurk/0e0f61faa8031c77198b37bd995d6eb3 It's nowhere near complete, but it does the job of a simple relay.
@kobigurk nice! Is this something you'd be interested to continue working and help us reach the goal of getting Orbit to work with IRC in general?
I personally would like to have work done on this in the next three months and was wondering if you'd be willing to participate and to what capacity?
@haadcode this is appealing, but I'm not sure I can commit to that right away. I'll update you!
I would love to connect orbit to IRC. It should be possible to join an IRC channel in Orbit and post messages to it as well as receive all the channel messages, perhaps even private messages.
There are multiple ways to do this, so ideas and possible solutions highly welcome in the comments!
What I'm thinking currently as a prototype:
irc.on('join', (channel) => orbit.join(channel))
irc.on('message', (m) => orbit.send(ircChannel, m))