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

The front-end application I am developing currently only consumes messages sent from the server. I would like to be able to test that I am handling the responses properly, and...

I see the change here, however I do not know how to use it. https://github.com/AngularClass/angular-websocket/commit/fac7d4504c746d3ed4529afaa4cb698b9e7aee63 I need to send ArrayBuffer's thru it.

I get a `"WebSocket connection to 'ws://localhost:3000/' failed: Connection closed before receiving a handshake response"` error (at v1.0.14/angular-websocket.js:362) However, if I replace `var dataStream = $websocket('ws://localhost:3000');` with a plain old...

# Description User can't enter any letters in party phone field, button "+Add" will be inactive. # Steps to reproduce issue User tries to enter not a numbers in phone...

And I'd really need it for my tests :smile:

Hello, Thank you for developing this! It's very easy to use and intuitive. I'm using this library along with https://github.com/theturtle32/WebSocket-Node/blob/d5398c862b3aa460f71f1c77ddd6138d4e722eaf/docs/WebSocketRequest.md. Under the 'reject' section, you'll see that if a connection...

Is it possible to send credentials on opening a web socket connection, much in the same way that $http does if we use the useCredentials option? Here's a very similar...

When the socket server is restarted, the client socket connection gets the onclose event with code 1006. Since this isn't in `_reconnectableStatusCodes`, it never tries to reconnect again. Is there...

This code doesn't work: ``` ws.onClose(function (e) { $scope.anyVariable = anyValue; } ``` I mean, scope variables are changed but not binding to the view. Binding is off I fixed...

I got error 'Uncaught SyntaxError: Unexpected token h' when executing usage first usage example. It points to anonymous function collection.push(JSON.parse(message.data)) ?