volvox-core
v0.1.0
Published
Microservice framework with powerful service discovery using Consul or ETCD
Downloads
4
Maintainers
Readme
volvox.js - Self announcing services
Volvox.js simple framework with powerful service discovery using Consul or ETCD
Just develop your app using your favorite framework Express, Hapi, Restify etc then Volvox.js takes care of the rest. It starts application on available port registers application to Consul or ETCD and starts worker that polls for critical instances and deregister them. volvox.js provides /status endpoint for Consul Health Checks. Also, it provides client to select random instance to communicate.
Here is sample code shows express.js and Consul integration
import Volvox from 'volvox-core';
import vconsul from 'volvox-consul';
import vexpress from 'volvox-express';
import express from 'express'
async function main() {
let server = express();
server.get('/customers', (req, res) => {
res.send({
customerName: "Test customer",
customerId: 666
});
});
let volvox = new Volvox(vconsul(), vexpress());
await volvox.bootstrap(server, "customers", "v1");
}
main();