Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

udp-balancer

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

udp-balancer

Load balancer for UDP

latest
Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
8
700%
Maintainers
1
Weekly downloads
 
Created
Source

udp-balancer

Load balancer for UDP protocol.

Installation

$ npm install udp-balancer --save

Features

  • Round-robin rotation
  • Customizable concurrency of sending data
  • Lightweight
  • Update servers on-the-fly

Usage

Whatever data you send to the udp-balancer is proxied to one of the specified servers using round-robin algorithm.

Command-line tool

$ udp-balancer servers.json

Docker

$ docker run -e PORT=3000 -p 3000:3000 -v servers.json:/servers.json vdemedes/udp-balancer /servers.json

API

const balance = require('udp-balancer');

// servers to balance
const servers = [
	'127.0.0.1:3001',
	'127.0.0.1:3002'
];

// create instance of balancer
const balancer = balance(servers);

// bind balancer to port 3000
balancer.bind(3000);

License

udp-balancer is released under the MIT license.

Keywords

udp

FAQs

Package last updated on 03 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts