angular-websocket icon indicating copy to clipboard operation
angular-websocket copied to clipboard

:arrow_upper_left: The missing Angular WebSocket module for connecting client applications to servers by @AngularClass

Results 66 angular-websocket issues
Sort by recently updated
recently updated
newest added

It seems that some of the docs regarding reconnect and the $websocketBackend mock are missing. Are they just in a different location other than the README.md?

It'd be nice to be able to support connections to a port with relative URLs.. for example: ``` s = $websocket('ws://localhost:8080') s.setUri('/user').send("LOGIN " + user) //using the current socket, send...

Hi i am using angular websocke when i switch on websocket and open the connection or close a connection the $rootScope model was not change. Service code : ``` js...

Now, every time a connection is closed with enabled reconnect a message is logged to the console. This can get quite disturbing, e.g. while running a test suite. Pull request...

I tried an example from readme https://github.com/AngularClass/angular-websocket?utm_source=angular-js.in&utm_medium=website&utm_campaign=content-curation . And I can't get data in a controller. In a factory I can see them using console.log. But there is no data...

I have referenced the example in the docs. How can I manually reconnect the web socket from my controller while modifying the query string value of the web socket?

Hello, I'm trying to use the `ngWebSocketMock` mock for test but it seems that `expectSend`doesn't work well. `expectConnect` works fine once I added the afterEach verifyOutstanding ``` js describe('connect', function(){...

Is there a way to test and see if your currently connected or not?

when I using $websocket.send() I get this error message and without any other information, what's wrong with that? here is my code: ``` //service app.factory('mySock', ['$websocket', function($websocket){ return $websocket('ws://www.cspebank.cn:8080/ws.do'); }...

Hello, I would like to point out an incoherent behavior with the reconnect functionality depending on the used browser. The issue happen after instantiating the `$webcoket([url], [options])`. This instruction will...