Skip to content

Instantly share code, notes, and snippets.

@itsbth
Created January 1, 2012 01:41
Show Gist options
  • Select an option

  • Save itsbth/1545928 to your computer and use it in GitHub Desktop.

Select an option

Save itsbth/1545928 to your computer and use it in GitHub Desktop.
Uploaded by UploadToGist for Sublime Text 2
http = require 'http'
server = http.createServer (req, res) ->
res.writeHead 200
res.end "Hello, World!"
server.listen 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment