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

A websocket implementation in elisp, for emacs.

Results 10 emacs-websocket issues
Sort by recently updated
recently updated
newest added
trafficstars

according to [@dickmao](https://github.com/dickmao) in https://github.com/tkf/emacs-request/issues/193#issuecomment-728884166, the bug described in https://github.com/tkf/emacs-request/issues/193 and https://github.com/millejoh/emacs-ipython-notebook/issues/754 is coming from `websocket`. Please let me know if I could be of any assistance in debugging. thank...

emacs-websocket doesn't support connecting through HTTP proxies. It probably should read url-proxy-services and use that to automatically go through an HTTP proxy for the websocket connnection if one is configured....

For me this "solves" #73 but it's very hacky...

Hi Andrew, I hope this message finds you well. I was in the process of updating some of my Emacs packages this morning, and noticed I couldn't update because of...

It appears that websocket cannot communicate with a server using TLSv1.{2,3}. I had to enable TLSv1. debug message from nginx: `client sent invalid method while reading client request line, client...

Every once in a while, a `*Warnings*` buffer pops up, displaying error messages such as: ``` Error (websocket): in callback `on-message': JSON readtable error: 89 Error (websocket): in callback `on-message':...

With this server: ```lisp (defvar server (websocket-server 9009 :host 'local :on-message (lambda (ws frame) (let* ((b64-image (websocket-frame-text frame)) ) (with-current-buffer (get-buffer-create "*image-text-output*") (insert "\nCHUNK:\n") (insert b64-image)) ) ) :on-open (lambda...

The functional tests do not pass on Windows. I've found three issue so far. (Let me know if you want me to open these as different issues.) - [x] The...

The [fourth test](https://github.com/ahyatt/emacs-websocket/blob/master/websocket-test.el#L312) for `websocket-to-bytes` tests is failing on my 32-bit machine. If I had to guess, commit d29b171b812893b30fa0b86eebbaf548518992f9 looks like it introduced the failure. `lsh` doesn't like it when...

Trying to get a graph of my org-roam, I get this error. Also if I try to run (org-roam-db-autosync-mode) I can't find any not commented "This" in the code in...