Skip to content

Instantly share code, notes, and snippets.

@jashkenas
Forked from dpritchett/gist:616982
Created October 8, 2010 15:40
Show Gist options
  • Save jashkenas/616990 to your computer and use it in GitHub Desktop.
Save jashkenas/616990 to your computer and use it in GitHub Desktop.
//Working JS
var server = Connect.createServer(
Connect.logger(),
Connect.staticProvider(__dirname + '/public'),
function(req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('Hello World');
res.end();
}
);
server = Connect.createServer(
Connect.logger()
Connect.staticProvider __dirname + '/public'
(req, res) ->
res.writeHead 200, 'Content-Type': 'text/plain'
res.write 'Hello World'
res.end()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment