Platform-dependent distribution of exiftool.
npm install @mcmics/dist-exiftoolA distribution of _exiftool_. Depending on the platform, it will install
either exiftool.pl or
exiftool.exe module.
Current version is 13.36.
For Windows executable we use the x64 version.



``js
const execFile = require('child_process').execFile;
const exiftool = require('@mcmics/dist-exiftool');
execFile(exiftool, ['-j', 'image.jpg'], (error, stdout, stderr) => {
if (error) {
console.error(exec error: ${error});stdout: ${stdout}
return;
}
console.log();stderr: ${stderr}
console.log();``
});