0.9.2 • Published 6 years ago

nodebalancer v0.9.2

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

nodebalancer

A simple node.js load balancer and reverse proxy to be used in a RESTful or mirrored/distributed microservices architecture.

Balances and proxies HTTP requests addressed to a web service provider host towards a list of mirror servers; upon receiving HTTP or socket errors redirects the request to the next host in the stack, in order to provide high availability and uptime of services and REST APIs. Can be run on the same machine on different configurations passing by argument a JSON file containing a list of servers to be proxied and the port to be run on.

Install

With npm do:

npm install nodebalancer -g

Usage

A new proxy instance can be run using the command:

node nodebalancer.js ./config.json 1234

A new listener will be opened on port 1234, using the server list read from the file config.json, on the local machine under the application path. If a port number is not provided, port 8000 is used as a default. If the file is not a valid JSON or is not present under the path an error will be raised.

To start the proxy using https it is possible to use the flag -s; in this case, the path to the server key can be specified using the flag -k, and the one to the server certificate using the flag -c; An example:

node nodebalancer.js ./config.json 1234 -s -k /etc/ssl/key.pem -c /est/ssl/cert.pem

Key and certificate default to key.pem and cert.pem under the process working root.

Configuration file

A configuration file is a JSON file containing in a JSON array a list of JSON objects, each containing hosts and ports to be mirrored. It is possible to explicit the protocol to be used for the request, could be http or https (defaults to http), in this form:

[   {
		"host": "localhost",
		"port": 7800
	},
	{
		"host": "testserver1",
		"port": 4444,
		"protocol" : "https"
	},
	{
		"host": "abc.test.com",
		"port": 1234,
		"protocol" : "http"
	}
]

Behavior

Assuming that each proxied host contains the same resources, invoking an HTTP verb on the machine running nodebalancer results in a round-robin load balancing of the requests. In case an error occurs, for example because the invoked resource does not exist on the host, or the socket connection cannot be established because of a downtime due to failure or mantainance, the request in redirected to the next host in the list.

It is supposed that the requests are completely stateless, hence sessionization should be provided server-side, having knowledge of the high availability tool used on top of the stack.

Running the module different times, using different configuration files and/or different ports is useful in order to have a reverse proxy for each resource that should be kept in high availability.

Contribution

If you want to contribute or if you spot a bug (or just have questions) please feel free to open an issue on github or email me at danieledecaro113@gmail.com

Changelog

v0.9.1 28/02/18 - log caller address, request id

v0.9.0 08/11/17 - added https support, improved error handling

v0.1.6 02/05/17 - first stable release including descriptions

v0.2.1 03/05/17 - added TTL to avoid endless loops

v0.2.3 08/05/17 - added config file error handling

v0.2.3 08/05/17 - added executable in package.json

v0.2.5 09/05/17 - fixed bug on binary server responses

v0.2.6 09/05/17 - improved error handling on startup

v0.3.0 10/05/17 - added support for HTTP request body, fixed method issues

0.9.2

6 years ago

0.9.1

6 years ago

0.9.0

6 years ago

0.3.0

7 years ago

0.2.6

7 years ago

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago