mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
var http = require('http'),
|
|
httpProxy = require('../../lib/node-http-proxy');
|
|
//
|
|
// Create your proxy server
|
|
//
|
|
httpProxy.createServer(9000, 'localhost').listen(8000);
|