SockJS provider for AngularJS.
Based on Brian Ford's angular-socket-io.
Install
bower install angular-sockjs
- Made sure the SockJS client library is loaded.
- Include the
socket.js
script provided by this component into your app. - Add
bd.sockjs
as a module dependency to your app.
Usage
This module exposes a socketFactory
, which is an API for instantiating
sockets that are integrated with Angular's digest cycle.
Making a Socket Instance
// in the top-level module of the appangular;
With that, you can inject your mySocket
service into controllers and
other serivices within your application!
Using Your Socket Instance
Building on the example above:
// in the top-level module of the appangular;
API
Since the SockJS API uses single event handlers rather than Socket.io's event emitter style, this library provides a lightweight wrapper around the handlers.
socket.setHandler(event, callback)
Accepts valid socket events: open
, close
, and message
. Returns socket wrapper so multiple calls can be chained.
socket.removeHandler(event)
Handles the same events as socket.setHandler
. Returns socket wrapper so multiple calls can be chained.
socket.send(message)
Sends a socket message.
socket.close([code], [reason])
Attempts to close the socket.
Options
socketFactory({socket: })
This option allows you to provide the socket
service with a SockJS
instance to be used internally.
This is useful if you need to hold a reference to the sockjs
object for use elsewhere.
angular;
socketFactory({url: })
This option allows you to provide a URL to pass through to the SockJS constructor.
License
MIT