elnode
elnode copied to clipboard
evented io webserver right inside your emacs.
See https://www.reddit.com/r/emacs/comments/5azqjr/emacs_web_server_problems/d9mltkw For an explanation
Because of a quirk in how Emacs 25.1+ creates network processes, the flags `server` and `nowait` cannot both be set in `make-network-process`. Elnode sets both. On Emacs 26.1, this is...
Inside nixos when the webserver tries to serve files it does not find the "/bin/cat" binary it apperently uses for that. (setq elnode-send-file-program (locate-file "cat" exec-path)) (setq elnode-send-file-program "cat") that...
Hi uicferrier! First off, thank you for the awesome elnode. I'm a big fan of emacs and emacs lisps, though I still have much to learn. It's continually exciting to...
Some `.org` files fail to render in any browser when served by `elnode`. These files export without error, and the rendered html can be validated using http://validator.w3.org/. Only `curl` gives...
related issue #98 A HTTP send data should be converted to a raw byte sequence. (use `encode-coding-string`)
@nicferrier, I've corrected a typographical error in the documentation of the [elnode](https://github.com/nicferrier/elnode) project. You should be able to merge this pull request automatically. However, if this was intentional or if...
Not sure if this is a true issue, but I ran into this while testing peek-mode with the _scratch_ buffer, which contains the '*' character. A simple example: ``` (defconst...