https://github.com/athoune/node-ucengine
I focus on using the demo provived by ucengine. The object model is
pretty stable, Ucengine contains Users wich contains Meetings. UC
events become node events for User and Meeting.
Here is a sample :
var uc = new Ucengine({host:'localhost', port:5280});
// [...] connecting users and meetings
uc.users["
rob...@demo.com"].meetings["demo"].addListener(
'
chat.message.new', function(msg) {
console.log("Robert got a message in the demo meeting", msg);
});
uc.users["
rob...@demo.com"].meetings["demo"].chat("Bonjour monde",
"fr");
M.