
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@jamietanna/opengraph-mf2
Advanced tools
A library to convert an OpenGraph metadata object to a Microformats2 object
A library to convert between parsed OpenGraph metadata to a Microformats2 object.
To install it for your current project, you can run:
npm install --save @jamietanna/opengraph-mf2
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
A library to convert an OpenGraph metadata object to a Microformats2 object
We found that @jamietanna/opengraph-mf2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.