Skip to content

Instantly share code, notes, and snippets.

@ignacy
Created August 10, 2012 10:17
Show Gist options
  • Select an option

  • Save ignacy/3313187 to your computer and use it in GitHub Desktop.

Select an option

Save ignacy/3313187 to your computer and use it in GitHub Desktop.
(defun welcome-page-handler (httpcon)
(elnode-http-start httpcon "200" '("Content-type" . "text/html"))
(elnode-http-return httpcon "<html><body><h1>Hello there!!</h1></body></html>"))
(elnode-start 'welcome-page-handler :port 8010 :host "localhost")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment