HAProxy producer for Godot
npm install godot-haproxy``bash`
npm install godot-haproxy
js
var godot = require('godot');
var HAProxyProducer = require('godot-haproxy');godot.createClient({
type: 'tcp',
producers: [
HAProxyProducer({
ttl: 1000
})
]
}).connect(1337);
``