Skip to content

Instantly share code, notes, and snippets.

@ryancole
Created January 28, 2011 17:49
Show Gist options
  • Save ryancole/800637 to your computer and use it in GitHub Desktop.
Save ryancole/800637 to your computer and use it in GitHub Desktop.
new, simple nodejs web server in coffeescript
http = require 'http'
server = http.createServer (req, res) ->
res.writeHead 200, {'Content-Type': 'application/json'}
res.end(JSON.stringify [1,2,3])
server.listen 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment