Skip to content

Instantly share code, notes, and snippets.

View weichensw's full-sized avatar

Wei Chen weichensw

View GitHub Profile
@weichensw
weichensw / laggy_proxy.js
Created March 4, 2015 21:11
Lag your page load
var http = require('http');
http.createServer(function (request, response) {
var server_request = http.request({
host : request.headers['host'],
port : 80,
method : request.method,
headers : request.headers,
path : request.url
}, function (server_response) {