npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-exif-metadata

v0.1.0

Published

n8n community node to extract EXIF, GPS, and camera metadata from images using exifr

Readme

n8n-nodes-exif-metadata

n8n community node to extract EXIF, GPS, and camera metadata from images.

Uses the exifr library — fast, zero-dependency EXIF parser supporting JPEG, TIFF, HEIC, AVIF, and PNG.

Installation

In your n8n instance: Settings > Community Nodes > Install > enter n8n-nodes-exif-metadata.

Node: EXIF Metadata

Input Modes

URL mode — provide a public image URL:

| Field | Description | |-------|-------------| | Image URL | Public HTTPS URL of the image (supports expressions like {{$json.imageUrl}}) |

Binary mode — use binary data from a previous node (e.g. HTTP Request with binary response):

| Field | Description | |-------|-------------| | Binary Property | Name of the binary property containing the image (default: data) |

Options

| Option | Default | Description | |--------|---------|-------------| | Include Reverse Geocoding | false | Look up street address from GPS coordinates via OpenStreetMap Nominatim | | Include Raw Tags | false | Include all raw EXIF tags in output |

Output

{
  "url": "https://example.com/photo.jpg",
  "device_info": {
    "make": "Apple",
    "model": "iPhone 15 Pro",
    "software": "17.4.1",
    "lens_model": "iPhone 15 Pro back triple camera"
  },
  "image_properties": {
    "width": 4032,
    "height": 3024,
    "orientation": 1,
    "fileSize": 3456789
  },
  "datetime_info": {
    "datetime_original": "2024-03-15T14:30:00.000Z",
    "datetime_digitized": "2024-03-15T14:30:00.000Z",
    "file_modify_date": "2024-03-15T14:30:00.000Z"
  },
  "gps_data": {
    "latitude": 48.8566,
    "longitude": 2.3522,
    "altitude_meters": 35,
    "has_location": true,
    "google_maps_url": "https://www.google.com/maps?q=48.8566,2.3522"
  },
  "camera_settings": {
    "f_number": 1.78,
    "exposure_time": 0.008,
    "iso_speed": 50,
    "focal_length": 6.765,
    "flash": "Flash did not fire",
    "white_balance": "Auto"
  },
  "processedAt": "2026-04-14T12:00:00.000Z"
}

With reverse geocoding enabled, an address field is added:

{
  "address": {
    "amenity": "Eiffel Tower",
    "road": "Avenue Anatole France",
    "suburb": "Gros-Caillou",
    "city": "Paris",
    "state": "Ile-de-France",
    "postcode": "75007",
    "country": "France",
    "country_code": "fr",
    "display_name": "Eiffel Tower, Avenue Anatole France, Paris, France"
  }
}

Example Workflows

URL mode: Manual Trigger > EXIF Metadata (paste image URL)

Binary mode: Manual Trigger > HTTP Request (download image as binary) > EXIF Metadata (binary property: data)

With Apify actor: Webhook (receives URL from Apify) > HTTP Request (download image) > EXIF Metadata (binary mode + geocoding) > Respond to Webhook

Supported Formats

JPEG, TIFF, HEIC, AVIF, PNG

License

MIT