Skip to content

Instantly share code, notes, and snippets.

@maciejzgadzaj
Created August 19, 2010 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejzgadzaj/538142 to your computer and use it in GitHub Desktop.
Save maciejzgadzaj/538142 to your computer and use it in GitHub Desktop.
var sys = require('sys'),
http = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write('<p>Hello World</p>');
res.end();
}).listen(8080);
Copy link

ghost commented Mar 19, 2015

This is not a fair comparison to Apache. Repeat the tests with this code:
https://gist.github.com/AndovaBegarin/065b6abfc05ed32f2cbc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment