metadata-scrapper

Welcome message

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
metadata-scrapper
2.0.3a year ago3 years agoMinified + gzip package size for metadata-scrapper in KB

Readme

MetaData Scrapper

NodeJS JavaScript


Metadata-Scrapper is a lightweight Node.Js Web Scraping Module which would help scraping out the details in meta tags such as url, title, description, image etc. in different webpages. It makes scraping easy by allowing the user to just enter the required URL of the page.

Installation

Install with the help of following command:
npm install metadata-scrapper

Running the module

Use the following Code snippet:
const metadataScrapper = require('metadata-scrapper');

//replace your actual URL
const url = "https://www.example.com" 

metadataScrapper.Crawler(url)
.then((data)=>{
    // Your scrapped content stored in data
    console.log(data);
})
.catch(err=>console.log(err);)

Contributors