jashkenas--coffeescript/examples/web_server.coffee

12 lines
261 B
CoffeeScript
Raw Normal View History

2010-02-15 04:20:53 +00:00
# Contributed by Jason Huggins
http: require 'http'
server: http.createServer (req, res) ->
res.sendHeader 200, {'Content-Type': 'text/plain'}
res.sendBody 'Hello, World!'
res.finish()
server.listen 3000
puts "Server running at http://localhost:3000/"