I have hosted my own IRC server, for a small community of coders and friends, since 1999. I never really strayed from using mirc or irssi, when I'm on a desktop or have a keyboard. On my iphone, the options were pretty lacking, though. The best true IRC client for iphone is one called IRC999, in my opinion. These clients all bugged me though because when the phone would go idle or shut off the wifi, the client disconnects.<p>Sometime in early December, an idea hit me about an IRC client that would function sort of like Twitter's mobile client. It'd defer the task of maintaining the IRC connection off to a server and it'd expose an HTTP-based API for the mobile app to use.<p>Anyway, so that's what I've done. I wrote a web server / IRC client that logs chat data to a database. Specifically formatted data is exposed via HTTP so that it can be easily consumed by a mobile client. I used node.js and couchdb for these two components. I also have the basics of a iphone app. The app can be configured to point to any URL / port to use as an API.<p>These components are all open source because I think that's important. Since the server component is just an IRC client, it could be connected to BNCs like ZNC, and <i>should</i> continue to function just the same. Might need some BNC-specific commands, though.<p>I just wanted to show this and see if others thought it was a neat idea. The project is still hacky but I'm actively building it.<p>Screenshots: http://imgur.com/a/yMWVs
Client source: https://github.com/ryancole/pound-client
Server source: https://github.com/ryancole/pound-gateway
I guess after that wall of text I didn't mention that this is nice because the mobile client maintains no connection. No messages are missed while your phone is sleeping or dead, etc.<p>Screenshots: <a href="http://imgur.com/a/yMWVs" rel="nofollow">http://imgur.com/a/yMWVs</a>
Client source: <a href="https://github.com/ryancole/pound-client" rel="nofollow">https://github.com/ryancole/pound-client</a>
Server source: <a href="https://github.com/ryancole/pound-gateway" rel="nofollow">https://github.com/ryancole/pound-gateway</a>
I'm using the irccloud iPhone app for this exact usage right now. The difference is that irccloud itself is a single point of failure that i can't fix if it goes offline.