get-seo
v1.0.2
Published
Get SEO information from a URL
Downloads
3
Readme
get-seo
This npm package provides a simple implementation for getting the seo title and description of a website.
Installation
npm i get-seo
Example usage
const { getSEO } = require('get-seo');
// ...
const seoGetter = new getSEO('https://www.example.com');
const title = await seoGetter.getTitle();
const description = await seoGetter.getDescription();
// ...