mirror of
https://github.com/http-party/node-http-proxy.git
synced 2026-01-18 16:52:30 +00:00
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
var http = require('http'),
|
|
httpProxy = require('../../');
|
|
//
|
|
// Create your proxy server
|
|
//
|
|
httpProxy.createProxyServer({ target: 'http://localhost:9000' }).listen(8000); |