A distribution of exiftool.exe
npm install exiftool.exe

You might also be interested in dist-exiftool
which will install an appropriate version of exiftool depending on the platform, and
exiftool.pl for non-Windows platforms.
``js
const exec = require('child_process').execFile;
const exiftool = require('exiftool.exe');
execFile(exiftool, ['-j', 'image.jpg'], (error, stdout, stderr) => {
if (error) {
console.error(exec error: ${error});stdout: ${stdout}
return;
}
console.log();stderr: ${stderr}
console.log();``
});