Gathering detailed insights and metrics for jpeg-exif
Gathering detailed insights and metrics for jpeg-exif
Gathering detailed insights and metrics for jpeg-exif
Gathering detailed insights and metrics for jpeg-exif
npm install jpeg-exif
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
17 Stars
144 Commits
10 Forks
5 Watchers
8 Branches
4 Contributors
Updated on May 09, 2024
Latest Version
1.1.4
Package Id
jpeg-exif@1.1.4
Unpacked Size
898.68 kB
Size
834.89 kB
File Count
17
NPM Version
6.10.3
Node Version
10.16.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Get exif information from jpeg format file. Works with TIFF too!
1import exif from "jpeg-exif"; 2 3const filePath = "~/Photo/IMG_0001.JPG"; 4 5exif.parse(filePath, (err, data) => { 6 if (err) { 7 console.log(err); 8 } else { 9 console.log(data); 10 } 11});
1import exif from "jpeg-exif"; 2 3const filePath = "~/Photo/IMG_0001.JPG"; 4const data = exif.parseSync(filePath); 5 6console.log(data);
1import fs from "fs"; 2import exif from "jpeg-exif"; 3 4const filePath = "~/Documents/DOC_0001.TIFF"; 5const buffer = fs.readFileSync(filePath); 6const data = exif.fromBuffer(buffer); 7 8console.log(data);
1$ npm i jpeg-exif
1{ 2 "Make": "Apple", 3 "Model": "Apple", 4 //... 5 "SubExif": [ 6 "DateTimeOriginal": "2015:10:06 17:19:36", 7 "CreateDate": "2015:10:06 17:19:36", 8 //... 9 ], 10 "GPSInfo":[ 11 "GPSLatitudeRef": "N", 12 "GPSLatitude": [ 35, 39, 40.08 ], 13 //... 14 ] 15}
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/8 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
22 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More