Extending btford's angular-socket-io component by exposing socket.io's socket socket-object
bower install angular-socket-io-socket
- Include
bower_components/angular-socket-io-socket/ioSocket.js
andbower_components/angular-socket-io-socket/bower_components/angular-socket-io/socket.js
(or grab ford's angular-socket-io component directly from bower ) - Include socket.io's
socket.io.js
- Include
m0x72.ioSocket
moyour app
Exposes a ioSocketFactory
that can be instatiated just like the original socketFactory
by:
angular.module('myApp', ['m0x72.ioSocket', 'btford.socket-io'])
.factory('mySocket', function (ioSocketFactory) {
return ioSocketFactory({
ioSocket: io.connect('/some/path') // optional
});
});
Refer to angular-socket-io for the original API.
On top, angular-socket-io-socket gives you access to the socket object of the socket via .socket
angular.module('myApp')
.controller('myCtrl', function ($scope, mySocket) {
$scope.isConnected = mySocket.socket.connected
$scope.reconnectFunction = mySocket.socket.connect
});
v 0.1.4
- syntax fix (missing semicolon in ioSocket.js; thanks @murum)
v 0.1.3
- fix to v 0.1.2
v 0.1.2
- changed $emit wrapper to $timeout to account for double digest cycles when socket.io handles events immediatley
v 0.1.1
- fixed bower.json
v 0.1.0
- initial version - provides:
- access to socket object via
yourFactory.socket
- monkey patching
$emit
to cause$digest
cycles on any incoming events (and keeping bindings to the socket object aware)
Credits go to Brian Ford (btford) and his angular-socket-io project
MIT - Party!
Copyright (c) 2014 m0x72
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.