Package Exports
- dist-exiftool
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dist-exiftool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dist-exiftool
A distribution of exiftool. Depending on the platform, it will install either exiftool.pl or exiftool.exe module. Current version is 10.53.
Usage
The module exports a path to the exiftool executable.
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}`);
return;
}
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
});
Links
License
Artistic License 2.0