mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +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); |