Socket
Book a DemoInstallSign in
Socket

@jamietanna/opengraph-mf2

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jamietanna/opengraph-mf2

A library to convert an OpenGraph metadata object to a Microformats2 object

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

OpenGraph to Microformats2 converter

A library to convert between parsed OpenGraph metadata to a Microformats2 object.

Installation

To install it for your current project, you can run:

npm install --save @jamietanna/opengraph-mf2

Usage

const toMf2 = require('@jamietanna/opengraph-mf2');

// for a given, parsed set of OpenGraph metadata, for instance using https://www.npmjs.com/package/open-graph-scraper+
const og = {
  "ogTitle": "Week Notes 22#10 · Jamie Tanna | Software Engineer",
  "ogLocale": "en_GB",
  "ogDescription": "What happened in the week of 2022-03-07?",
  "ogUrl": "https://www.jvt.me/week-notes/2022/10/",
  "ogSiteName": "Jamie Tanna | Software Engineer",
  "ogType": "article",
  "articlePublishedTime": "2022-03-13T21:59:14+0000",
  "twitterSite": "@jamietanna",
  "twitterCreator": "@jamietanna",
  "twitterCard": "summary",
  "twitterTitle": "Week Notes 22#10 · Jamie Tanna | Software Engineer",
  "twitterDescription": "What happened in the week of 2022-03-07?",
  "ogImage": {
    "url": "https://www.jvt.me/img/profile.jpg",
    "width": null,
    "height": null,
    "type": "jpg"
  },
  "twitterImage": {
    "url": "https://www.jvt.me/img/profile.jpg",
    "width": null,
    "height": null,
    "alt": null
  },
  "ogDate": "2022-03-13T21:59:14+0000",
  "favicon": "/favicon.png",
  "charset": "utf8",
  "requestUrl": "https://www.jvt.me/week-notes/2022/10/",
  "success": true
};

const mf2 = toMf2(og);
/*
mf2 = {
  type: [ 'h-entry' ],
  properties: {
    name: [ 'Week Notes 22#10 · Jamie Tanna | Software Engineer' ],
    summary: [ 'What happened in the week of 2022-03-07?' ],
    photo: [ 'https://www.jvt.me/img/profile.jpg' ],
    url: [ 'https://www.jvt.me/week-notes/2022/10/' ],
    published: [ '2022-03-13T21:59:14+0000' ]
  }
}
*/

FAQs

Package last updated on 29 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts