Skip to content

Instantly share code, notes, and snippets.

@dpritchett
Created September 17, 2010 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpritchett/584584 to your computer and use it in GitHub Desktop.
Save dpritchett/584584 to your computer and use it in GitHub Desktop.
# Contributed by Jason Huggins
sys = require 'sys'
http = require 'http'
server = http.createServer (req, res) ->
res.writeHead 200, 'Content-Type': 'text/plain'
res.write 'Hello, World!'
res.end()
server.listen 3000
sys.puts "Server running at http://localhost:3000/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment