Platform-dependent distribution of exiftool.
npm install dist-exiftool


``js
const execFile = require('child_process').execFile;
const exiftool = require('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();``
});