mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
var request = require('request'),
|
|
proxy = require('./lib/balancing-proxy');
|
|
|
|
proxy.createServer();
|
|
|
|
request({
|
|
uri: 'http://localhost:8080/post'
|
|
}, function () {
|
|
|
|
}) |