4

I plan to create a chat on the site for users, and was wondering if there is already open source javascript library that I can use.

Charles
  • 48,924
  • 13
  • 96
  • 136
jcubic
  • 51,975
  • 42
  • 183
  • 323
  • 1
    You may find the second answer on [Is there an open source WebSockets (JavaScript) XMPP library?](http://stackoverflow.com/a/2037853) to be a helpful starting point. – apsillers Aug 01 '12 at 15:50
  • They are only, libraries for push without websockets. And XMPP is only protocol ("file" format), but thanks. – jcubic Aug 01 '12 at 16:32

1 Answers1

2

You might want to have a look at node.js / jquery. Here's a tutorial on a chat (which supports web socket).

If you are using Dojo Toolkit there's something called Cometd to implement a chat room too.

Or you could use this (but no websocket).

fneron
  • 1,031
  • 3
  • 15
  • 39