Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created May 10, 2011 09:17
Show Gist options
  • Save ukstudio/964149 to your computer and use it in GitHub Desktop.
Save ukstudio/964149 to your computer and use it in GitHub Desktop.
http = require 'http'
http.createServer( (req, res) ->
res.writeHead 200, {'Content-Type': 'text/plain; charset=utf-8'}
res.end 'みてるー?\n'
).listen(8124, "127.0.0.1")
require('./node_modules/coffee-script')
require('./server.coffee')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment