Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am looking for a JavaScript IRC client [closed]

Tags:

javascript

irc

http://sourceforge.net/projects/jisirc/ is exactly what I need, only problem is it has multiple ActiveX dependencies and that will not do. Does anyone know of any similar projects which are more portable?

like image 669
Sean A.O. Harney Avatar asked Aug 17 '09 07:08

Sean A.O. Harney


2 Answers

You will have to have dependencies to an external application in order to open a socket towards the IRC server.

  • It can be dependent on the browser architecture (ActiveX controls, Mozilla based, ...)

  • Dependent on a java applet (in this case the irc server should be run on the same host the javascript originates from (unless you go towards signed applets))

  • The "real" IRC client is running on server-side, and the script is only used to communicate with that client.

In DmitryK's list you will find an example for each.

like image 57
Zed Avatar answered Sep 23 '22 10:09

Zed


  • http://ajaxian.com/archives/mibbit-ajax-based-irc-client
  • http://www.mozilla.org/projects/rt-messaging/chatzilla/
  • http://www.dynamicdrive.com/forums/archive/index.php/t-5374.html
like image 23
DmitryK Avatar answered Sep 24 '22 10:09

DmitryK