lightify node module
npm install node-lightifyLow-level client library for controlling Zigbee lights, switches by Lightify Wireless gateway
[Amazon link of OSRAM Lightify Wiress Gateway] (http://www.amazon.com/LIGHTIFY-wireless-connected-lighting-technology/dp/B00R1PB2T0)

``bash`
$ npm install node-lightify
`javascript``
var lightify = require('node-lightify');
var connection = new lightify.lightify('x.x.x.x');
connection.connect().then(function(){
return connection.discover();
}).then(function(data) {
console.log(data.result);
connection.dispose();
}).catch(function(error){
console.log(error);
});
Contributions are very welcome! Please note that by submitting a pull request for this project, you agree to license your contribution under the MIT License to this project.
Published under the MIT License.