Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 383 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 383 Bytes

stratum-proxy-redirect

Simple proxy server that can redirect all stratum traffic from one port to another host:port

Example Code:

// Starts a 'stratum proxy' server on localhost:3335 that redirects all traffic to stratum.example.com:3333
var stratum = require('./stratumRedirect.js');
var s = stratum.start('SOMENAME', 3335, 'stratum.example.com', 3333);