Does any one know of a way that I can read file metadata using node.js? For example, I want to read the \'comment\' attribute on the \'details\' tab of a jpeg file (on a Wi
There are a lot of NPM packages for reading EXIF data. For example:
https://www.npmjs.org/package/exif-parser
var parser = require('exif-parser').create(buffer); var result = parser.parse(); console.log(result);