Skip to content

Instantly share code, notes, and snippets.

@lawrencejones
Created May 27, 2014 21:21
Show Gist options
  • Save lawrencejones/891cc55a0ed14c524808 to your computer and use it in GitHub Desktop.
Save lawrencejones/891cc55a0ed14c524808 to your computer and use it in GitHub Desktop.
Small express demo
app = (require 'express')()
app.get '/hello', (req, res) ->
res.send 'world!\n'
app.listen 3000, (err) ->
throw err if err?
console.log 'Server listening at port 3000'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment