
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
javascript wrapper for exiftool.
Simplest way to install exifjs is to use npm, just npm install exifjs which will download exifjs and all dependencies.
Filename can be string or array of strings
exif.get(filename, callback);
Usage with Callback
var exifjs = require('exifjs');
var params = { exiftool : 'Path/to/exiftool/'}; // default is path
params.epoch = 's'; // default is ms (milliseconds)
var exif = exifjs(params);
var file = ["path/to/first/image","path/to/second/image"];
/*Using Callback*/
exif.get(file, function (err, json){
console.log(json);
});
Usage with promises
/*Using Promise*/
var exifdata = exif.get('/path/to/image');
exifdata.done(function (err, resp){
console.log(err, response);
});
GPL-V2
FAQs
javascript wrapper for exiftool
We found that exifjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.