I'm interest in learning how to use jquery comet to create real-time multi-user note taking like etherpad used to offer.

Can anyone offer any tips/tutorials/plug-ins... to point me in the right direction?

Thanks

link|improve this question

70% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You can start by reading the etherpad source code here and looking into the APE project which is a Comet server that let's you code in javascript. It's very powerful and has a few nice examples.

link|improve this answer
So Google purchased Etherpad and open-sourced the code. Awesome – Anurag May 28 '10 at 2:25
feedback

You could use Nginx and JavaScript to implement a Comet based chat system that is very scalable with little memory or CPU utilization.

I have a very simple example here that can get you started. It covers compiling Nginx with the NHPM module and includes code for simple publisher/subscriber roles in jQuery, PHP, and Bash.

http://blog.jamieisaacs.com/2010/08/27/comet-with-nginx-and-jquery/

A working example (simple chat) can be found here:
http://cheetah.jamieisaacs.com/

link|improve this answer
feedback

Not sure why you saying "JQuery comet". Comet is a technology (or rather technique) that involves both client and server. I've used Orbited and it worked quite well for me. It provides complete solution for building comet apps, that is, server with support for many protocols out of the box (I've used STOMP) and JavaScript library to communicate with the server. Check out this article with good introduction on Orbited.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.