0.0.11 • Published 2 years ago

@blockware/local-cluster-config v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

node-cluster-config

Node library for getting cluster configuration

Example

const request = require('request');
const ClusterConfiguration = require('@blockware/local-cluster-config');

//Gets the address of the cluster service - e.g. "http://localhost:30500"
const clusterAddress = ClusterConfiguration.getClusterServiceAddress();

request(clusterAddress + '/assets', (err, response, body) => {
    if (err) {
        console.error('Failed to get assets', err.stack);
        return;
    }

    console.log('Received assets\n%s', JSON.stringify(JSON.parse(body), null, 2));
});