AngularJS bindings for GoInstant. Build realtime, multi-user apps with AngularJS and GoInstant easily. https://developers.goinstant.com/v1/GoAngular/index.html
Rooms are GoInstant's method of putting your users and keys in one place.
In GoAngular we imagine you creating and interacting with rooms like this:
angularApp.controller('Ctrl', function($scope, goRooms) {
// Get a room, but don't join it
goRooms.get('someRoom').then(function() {..
// Get a room and join it
goRooms.join('someRoom').then(function() {..
});
Rooms are GoInstant's method of putting your users and keys in one place.
In GoAngular we imagine you creating and interacting with rooms like this: