Emacs勢は何でもEmacsでやりたがります。 当然WEBサーバだって作りたがるわけです。 最初の例_単独で駆動させる (defun my-elnode-hello-world-handler (httpcon) (elnode-http-start httpcon 200 '("Content-Type" . "text/html")) (elnode-http-return httpcon "<html><body><h1>Hello Elnode!!</h1></body></html>")) (elnode-start 'my-elnode-hello-world-handler :port 8028 :host "localhost") M-x eval-bufferこれでブラウザで確認できます。 M-x elnode-stop<RET>8028で止められます。 この形式だと、

