Client library in JavaScript for consuming properties set in the Conqueso server.
var conqueso = new Conqueso('https://127.0.0.1');
conqueso.getProperties('global').then(function(properties){
var propertyValueA = properties.getProperty('property.name.a');
propertyValueB = properties.getProperty('property.name.b', defaultValue);
}
The JavaScript Conqueso Client is built via grunt. The default grunt command will automatically run the test suite. Tests are BDD, built on top of the Mocha/Chai/Chai-as-promised framework.
https://github.com/domenic/chai-as-promised/
https://nodejs.org/en/download/
sudo npm install -g grunt-cli
npm install
grunt