├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── simple-httpd-test.el └── simple-httpd.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/emacs-web-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/emacs-web-server/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/emacs-web-server/HEAD/UNLICENSE -------------------------------------------------------------------------------- /simple-httpd-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/emacs-web-server/HEAD/simple-httpd-test.el -------------------------------------------------------------------------------- /simple-httpd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/emacs-web-server/HEAD/simple-httpd.el --------------------------------------------------------------------------------