Skip to content

Instantly share code, notes, and snippets.

@junosuarez
Created December 29, 2012 22:01
Show Gist options
  • Save junosuarez/4409621 to your computer and use it in GitHub Desktop.
Save junosuarez/4409621 to your computer and use it in GitHub Desktop.
///<reference path="../d.ts/node-0.8.d.ts" />
import http = module('http')
http.createServer((req, res) => {
res.write('hello!')
res.end()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment