Sha256: 02cdf4227cf6675553c5a5dd70fc5fe3868da28970a018609f6c1e7ce753d1fe

Contents?: true

Size: 261 Bytes

Versions: 7

Compression:

Stored size: 261 Bytes

Contents

# 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/"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
haml-more-0.5.1 vendor/coffee-script/examples/web_server.coffee
haml-more-0.5.0 vendor/coffee-script/examples/web_server.coffee
haml-more-0.4.0 vendor/coffee-script/examples/web_server.coffee
haml-more-0.4.0.d vendor/coffee-script/examples/web_server.coffee
haml-more-0.4.0.c vendor/coffee-script/examples/web_server.coffee
haml-more-0.4.0.b vendor/coffee-script/examples/web_server.coffee
haml-more-0.4.0.a vendor/coffee-script/examples/web_server.coffee