Skip to content

Instantly share code, notes, and snippets.

@w3ddd
Created April 23, 2012 06:35
Show Gist options
  • Save w3ddd/2469147 to your computer and use it in GitHub Desktop.
Save w3ddd/2469147 to your computer and use it in GitHub Desktop.
http = reqiore 'http'
http.createServer((request, response)->
response.writeHead 200, 'Content-Type': 'text/plain'
response.end 'Hello World'
).listen(8124)
console.log 'Server running at http://127.0.0.1:8124/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment