Advertisement
framp

goInstant crash

Feb 9th, 2014
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. var url = 'https://goinstant.net/56231ff9e929/mouseghost';
  2. var sessions;
  3. var room; var connection = new goinstant.Connection(url);
  4. connection.connect(function (err) {
  5. if (err) return;
  6. room = connection.room('localhost');
  7. room.join(function(err) {
  8. if (err) throw err;
  9. sessions = room.key('sessions');
  10. });
  11. });
  12.  
  13. sessions.get(function(){console.log(arguments)})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement