//Subscribe to the demo_tutorial channel with presence and state PUBNUB_demo.subscribe({ channel: 'demo_tutorial', noheresync: true, // don't do a here_now call on subscribe() message: function(m){ console.log(m); }, presence: function(m) { console.log(m); }, state: { name: 'presence-tutorial-user', timestamp: new Date() } });