Node module wrappers around the wixtoolset binaries
npm install wixtoolsetNode module wrappers around the wixtoolset binaries
````
var wix = require('wixtoolset');
wix.candle('app.wxs', {output: 'build'})
.then(function(wixobj) {
return wix.light(app.wixobj)
});
On platforms other then Windows you will need to have Wine installed and in the system path.
For example:
wix.candle(wxsFile, [wxsFile, ...], opts);
wix.light(objectFile, [objectFile, ...], opts)