sedmolestiae
Version:
A JavaScript implementation the Netflix OSS service registry, Eureka.
25 lines (24 loc) • 519 B
JavaScript
var Eureka = require('eureka-js-client').Eureka;
// example configuration
var client = new Eureka({
// application instance information
instance: {
app: 'jqservice',
hostName: 'localhost',
ipAddr: '127.0.0.1',
port: 8080,
vipAddress: 'jq.test.something.com',
dataCenterInfo: {
name: 'MyOwn'
}
},
eureka: {
// eureka server host / port
host: '192.168.99.100',
port: 32768
}
});
client.logger.level('debug');
client.start(function(error){
console.log(error);
});