mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
added hugs' webserver example
This commit is contained in:
parent
3e518e3cf9
commit
ff8e0c9751
1 changed files with 12 additions and 0 deletions
12
examples/web_server.coffee
Normal file
12
examples/web_server.coffee
Normal file
|
@ -0,0 +1,12 @@
|
|||
# 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/"
|
Loading…
Add table
Reference in a new issue