I'm creating a connection via the net
module in my Node.js application:
this.stream = net.createConnection(25, host, this._onConnect);
Which works absolutely fine, however I need to send this traffic through Proximo because my connection requires a static IP. I'm not familiar with the net
module, so any help would be beneficial.