Skip to content

Instantly share code, notes, and snippets.

@dpritchett
Created October 8, 2010 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dpritchett/616982 to your computer and use it in GitHub Desktop.
Save dpritchett/616982 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();
}
);
#coffee fails on the 2nd line with parse error: Unexpected 'PROPERTY_ACCESS'
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