Skip to content

Instantly share code, notes, and snippets.

@shrop
Last active December 22, 2015 06:08
Show Gist options
  • Save shrop/6428629 to your computer and use it in GitHub Desktop.
Save shrop/6428629 to your computer and use it in GitHub Desktop.
Node lol generator
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
i = 0;
while (i < 100000) {
response.write("lol ");
i++;
}
response.end();
}).listen(8888);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment