1.0.2 • Published 11 months ago

extract-metadata v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

extract-metadata

This npm package allows you to extract metadata from any URL available on the internet

To install this package

npm install extract-metadata

After installing the package you have to change the type to module in your package.json file

{
  .......
  "type": "module",
  .......
}

All Set now you can ready to use this package 😊🎉

import { getMetaData } from "extract-metadata";

const metdata = await getMetaData(
  "https://www.npmjs.com/package/extract-metadata"
);

console.log("The metadata is", metdata);

That's it 🙌🙌

Don't forget to leave a star on this Repo