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 🙏

© 2025 – Pkg Stats / Ryan Hefner

og-fetch

v1.0.0

Published

Simple, bandwidth-efficient OpenGraph metadata extraction through streaming with early termination.

Readme

OG-Fetch

Simple, bandwidth-efficient OpenGraph metadata extraction for Node.js

Key Features

  • Bandwidth efficient - Stops downloading at </head> tag
  • Simple API - Just one function: extractOG()
  • Streaming approach - Processes data as it arrives
  • Zero dependencies - Pure Node.js implementation
  • Focused - Does one thing really well

Installation

npm install og-fetch

Usage

const { extractOG } = require('og-fetch');

// Extract OpenGraph metadata
const metadata = await extractOG('https://github.com');

console.log(metadata);
// {
//   title: 'GitHub: Let's build from here',
//   description: 'GitHub is where over 100 million developers...',
//   image: 'https://github.githubassets.com/images/modules/site/social-cards/github-social.png',
//   type: 'website',
//   siteName: 'GitHub',
//   url: 'https://github.com',
//   performance: {
//     responseTime: 845,
//     bytesDownloaded: 26024,
//     stopped: true,
//     redirects: 0
//   }
// }

Examples

  • Basic usage: npm run example or node examples/basic.js
  • Batch processing: npm run example:batch or node examples/batch.js

API

extractOG(url, options?)

Extracts OpenGraph metadata from a URL.

Parameters:

  • url (string) - The URL to extract metadata from
  • options (object) - Optional configuration
    • timeout (number) - Request timeout in ms (default: 10000)
    • maxRedirects (number) - Maximum redirects to follow (default: 5)
    • userAgent (string) - Custom user agent

Returns: Promise resolving to metadata object with:

  • OpenGraph properties (title, description, image, type, siteName, ogUrl)
  • Performance metrics (responseTime, bytesDownloaded, stopped, redirects)
  • Original URL

How It Works

OG-Fetch uses a streaming approach to minimize bandwidth usage:

  1. Streams HTML as it arrives from the server
  2. Searches for </head> tag in incoming data
  3. Terminates early when found, saving bandwidth
  4. Parses metadata from the downloaded portion

This approach typically downloads only the HTML head section instead of the full page, providing significant bandwidth savings.

Performance

Based on real-world testing:

| Metric | Full Page | OG-Fetch | Improvement | |--------|-----------|----------|---------| | Bytes Downloaded | ~370KB | ~26KB | 93% less |

License

MIT