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

@spykesocial/react-native-opengraph-scrapper

v1.2.0

Published

React Native scraper module for Open Graph and Twitter Card info

Readme

React Native OpenGraph Scrapper

A TypeScript-friendly React Native package for scraping Open Graph metadata and Twitter Card information from a URL or HTML string.

Installation

npm install @spykesocial/react-native-opengraph-scrapper

Usage

Use a normal React Native or TypeScript import:

import getOpenGraphData from '@spykesocial/react-native-opengraph-scrapper';

const { error, result, response } = await getOpenGraphData({
  url: 'https://ogp.me/',
});

console.log(error);
console.log(result);
console.log(response);

Named import is also supported:

import { run } from '@spykesocial/react-native-opengraph-scrapper';

Callback usage is still supported for existing callers:

import getOpenGraphData from '@spykesocial/react-native-opengraph-scrapper';

getOpenGraphData({ url: 'https://ogp.me/' }, (error, result, response) => {
  console.log('error:', error);
  console.log('result:', result);
  console.log('response:', response);
});

React Native Notes

The package uses the runtime fetch, AbortController, setTimeout, and TextDecoder APIs instead of Node HTTP modules. Modern React Native versions provide fetch; if your app targets an older runtime, add the missing polyfills in your app entry file.

The package publishes ESM, CommonJS, and TypeScript declarations:

import getOpenGraphData from '@spykesocial/react-native-opengraph-scrapper';

CommonJS consumers can still use:

const getOpenGraphData = require('@spykesocial/react-native-opengraph-scrapper');

Result Shape

Successful promise calls resolve with:

{
  error: false,
  result: {
    ogTitle: 'Open Graph protocol',
    ogType: 'website',
    ogUrl: 'https://ogp.me/',
    ogDescription: 'The Open Graph protocol enables any web page to become a rich object in a social graph.',
    ogImage: {
      url: 'https://ogp.me/logo.png',
      width: '300',
      height: '300',
      type: 'image/png',
    },
    requestUrl: 'https://ogp.me/',
    success: true,
  },
  response,
}

Failed promise calls reject with:

{
  error: true,
  result: {
    success: false,
    requestUrl: 'https://example.com',
    error: 'Page not found',
    errorDetails: Error,
  },
}

Options

| Name | Info | Default Value | Required | | --- | --- | --- | --- | | url | URL of the site to scrape. Use either url or html, not both. | | Yes, unless html is set | | html | HTML string to parse without making a network request. | | Yes, unless url is set | | timeout | Request timeout in milliseconds. | 2000 | | | blacklist | Hostnames or URL fragments that should not be scraped. | [] | | | onlyGetOpenGraphInfo | Only read Open Graph tags and skip fallback parsing. | false | | | ogImageFallback | Use page images when no Open Graph image exists. | true | | | customMetaTags | Additional meta tags to scrape. | [] | | | allMedia | Return every image/video/player instead of only the first. | false | | | retry | Reserved for compatibility with older options. | 2 | | | headers | Request headers, such as a custom user agent. | {} | | | peekSize | Number of bytes/chars used when detecting charset. | 1024 | | | urlValidatorSettings | Options passed to validator.isURL. | Default URL validation settings | |

Thanks