I'm looking to build/adapt a shared whiteboard app for team and educational collaboration. Draw on a board, write some text, save picture, clear board, etc. We've already got a simple chat system setup with node.js and socket.io so probably want to stay on that route.

1.) What open source apps exist that might be pluggable / adaptable for this use?

2.) What node.js / javascript / html5 technologies might be useful for this task?

link|improve this question

4  
Might want to work on your accept rate, Mark. – Jordan Oct 2 '11 at 6:20
feedback

1 Answer

up vote 1 down vote accepted

As far as node.js technologies you would need the following

As far as rendering on the client I would recommend

Apart from that you need some kind of database, Redis, mongoDB & CouchDB are popular.

Apart from that just write it. Any other libraries you think you might need along the way can be found on the npm registry

However I can offer some package.json examples for my chat and my blog to give some inspiration as to what libraries are useful

link|improve this answer
I've used express and socket.io. Raphael looks cool. Love to see an example to work from for drawing stuff with node.js – markwk Oct 4 '11 at 9:56
I wrote a prototype somewhere. A couple of hours of hacking should do. A quick google search for "node.js whiteboard" should get you started. – Raynos Oct 4 '11 at 10:37
Found this: stackoverflow.com/questions/7251977/… – markwk Oct 4 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

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