Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 653 Bytes

README.md

File metadata and controls

30 lines (18 loc) · 653 Bytes

get-seo

Quality Gate Status

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();

// ...

License

MIT