Fetch the meta tags and title from an URL. Trades correctness for speed, so very fast, but might be wrong.
npm install fast-meta-tags
const fastMetaTags = require('fast-meta-tags')
// prints title and an array of tags, if failed to parse or could not fetch data it returns null
console.log(await fastMetaTags('https://www.youtube.com/watch?v=24GfgNtnjXc'))
Apache-2.0