Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wikimedia/html-metadata
MetaData html scraper and parser for Node.js (supports Promises and callback style)
https://github.com/wikimedia/html-metadata
javascript metadata-extraction metadata-extractor node-module nodejs web-scraper web-scraping
Last synced: about 1 month ago
JSON representation
MetaData html scraper and parser for Node.js (supports Promises and callback style)
- Host: GitHub
- URL: https://github.com/wikimedia/html-metadata
- Owner: wikimedia
- License: mit
- Created: 2014-12-17T12:54:28.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T14:56:50.000Z (2 months ago)
- Last Synced: 2024-10-01T14:41:55.564Z (about 1 month ago)
- Topics: javascript, metadata-extraction, metadata-extractor, node-module, nodejs, web-scraper, web-scraping
- Language: JavaScript
- Homepage:
- Size: 363 KB
- Stars: 165
- Watchers: 27
- Forks: 44
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- my-awesome-list - html-metadata
README
html-metadata
=============
[![npm](https://img.shields.io/npm/v/html-metadata.svg)](https://www.npmjs.com/package/html-metadata)
> MetaData html scraper and parser for Node.js (supports Promises and callback style)The aim of this library is to be a comprehensive source for extracting all html embedded metadata. Currently it supports Schema.org microdata using a third party library, a native BEPress, Dublin Core, Highwire Press, JSON-LD, Open Graph, Twitter, EPrints, PRISM, and COinS implementation, and some general metadata that doesn't belong to a particular standard (for instance, the content of the title tag, or meta description tags).
Planned is support for RDFa, AGLS, and other yet unheard of metadata types. Contributions and requests for other metadata types welcome!
## Install
npm install html-metadata
## Usage
Promise-based:
```js
var scrape = require('html-metadata');var url = "http://blog.woorank.com/2013/04/dublin-core-metadata-for-seo-and-usability/";
scrape(url).then(function(metadata){
console.log(metadata);
});
```Callback-based:
```js
var scrape = require('html-metadata');var url = "http://blog.woorank.com/2013/04/dublin-core-metadata-for-seo-and-usability/";
scrape(url, function(error, metadata){
console.log(metadata);
});
```The scrape method used here invokes the parseAll() method, which uses all the available methods registered in method metadataFunctions(), and are available for use separately as well, for example:
Promise-based:
```js
var cheerio = require('cheerio');
var preq = require('preq'); // Promisified request library
var parseDublinCore = require('html-metadata').parseDublinCore;var url = "http://blog.woorank.com/2013/04/dublin-core-metadata-for-seo-and-usability/";
preq(url).then(function(response){
$ = cheerio.load(response.body);
return parseDublinCore($).then(function(metadata){
console.log(metadata);
});
});
```Callback-based:
```js
var cheerio = require('cheerio');
var request = require('request');
var parseDublinCore = require('html-metadata').parseDublinCore;var url = "http://blog.woorank.com/2013/04/dublin-core-metadata-for-seo-and-usability/";
request(url, function(error, response, html){
$ = cheerio.load(html);
parseDublinCore($, function(error, metadata){
console.log(metadata);
});
});
```Options object:
You can also pass an [options object](https://github.com/request/request#requestoptions-callback) as the first argument containing extra parameters. Some websites require the user-agent or cookies to be set in order to get the response.
```
var scrape = require('html-metadata');
var request = require('request');var options = {
url: "http://blog.woorank.com/2013/04/dublin-core-metadata-for-seo-and-usability/",
jar: request.jar(), // Cookie jar
headers: {
'User-Agent': 'webscraper'
}
};scrape(options, function(error, metadata){
console.log(metadata);
});
```The method parseGeneral obtains the following general metadata:
```html
```
## Tests
```npm test``` runs the mocha tests
```npm run-script coverage``` runs the tests and reports code coverage
## Contributing
Contributions welcome! All contibutions should use [bluebird promises](https://github.com/petkaantonov/bluebird) instead of callbacks,
and be .nodeify()-ed in index.js so the functions can be used as either callbacks or Promises.