1 2 3 4 5 6 7 8 9 10 11 12 13 14
function User (app) { var base = this; base.name = Math.floor(Math.random() * 1000000) + ""; app.send('event-join', { 'name': base.name }); app.receive('event-join', function(json){ console.log(json); app.chat.receive(json.name, "has joined") }) }