First article €
Lorem ipsum dolor sit amet ...
Second article ...
Aenean commodo ligula eget dolor.
Extract meta-data from a html string. It extracts the body, title, meta-tags and first headlines to a object to push them to a search indexer like elastic-search
npm install html-extractorhtml-extractor
==============




Extract meta-data from a html string. It extracts the body, title, meta-tags and first headlines to a object to push them to a search indexer like elastic-search

```
npm install html-extractor
`js`
var Extrator = require("html-extractor");
var myExtrator = new Extrator();
arguments
- debug : ( Boolean optional: default = false )
Output the parsing time
Call .extract() to get the data of an html string.
HTML entities will be decoded.
arguments:
- html : ( String required )
The html string to process
- reduced : ( Object optional )
A object to reduce the content of body to a specific site content. It is not possible to reduce to a tag without a attribute filter.
- reduced.tag : ( String required if reduced is set )
The tag name of the html element to reduce to
- reduced.attr : ( String required if reduced is set )
The attribute of the html element to reduce to
- reduced.val : ( String required if reduced is set )
The attribute value of the html element to reduce to
- reduced.list : ( Boobean default = false )
Return every found reduced block as an array within body.
- cb : ( Function required )
The callback function
callback arguments:
- error : ( Error )
Error information. If no error occoured this will be nullObject
- data : ( ) String|Array
The extraction result
- data.body : ( ) reduced.list = true
The whole body content or the content within the configured reduced element. There will be just the text content without html tags/attributes and without the content in script tags.
If the reduced feature is used and the body will be an array of all found reduced blocks. Array
- data.h1 : ( ) h1
An array containing all text contents. Including the h1elements outside the configured reduced element Object
- data.meta : ( )
A Object of all found meta tags with the syntax . Other meta tags will be ignored.String
- data.meta.charset : ( optional )
If a metatag with the charset setting like is defined it will be returned under data.meta.charsetString
- data.meta.title : ( default = "" ) data.meta.title
If tilte tag is defined it will be returned under . Otherwise the key will contain an empty stringString
- data.meta.description : ( default = "" ) description
If a metatag with the name is defined it will be returned under data.meta.description. Otherwise the key will contain an empty stringArray
- data.meta.keywords : ( default = [] ) keywords
If a metatag with the name is defined it will be returned as trimmed array of strings under data.meta.keywords. Otherwise the key will contain an empty string
This is a simple example to extarct the content of a html document
`js
var Extrator = require("html-extractor");
var myExtrator = new Extrator();
var html =
Content
myExtrator.extract( html, function( err, data ){
if( err ){
throw( err )
} else {
console.log( data );
// {
// meta: {
// title: 'Testpage',
// description: '',
// keywords: []
// },
// body: ' Header 1 Content ',
// h1: [ 'Header 1' ]
// }
}
});
`> see
test/readme_example_simple or run in Tonic$3
This is a advanced example to show the usage of the reducing.
With the reduce feature it is possible to reduce the body content to the content of a specific html element.
`js
var Extrator = require("html-extractor");
var myExtrator = new Extrator();var html =
Lorem ipsum dolor sit amet ...
Aenean commodo ligula eget dolor.
Lorem ipsum dolor sit amet ...
Lorem ipsum dolor sit amet ...
Lorem ipsum dolor sit amet ...
var reduceTo = {
tag: "div",
attr: "id",
val: "content"
}
myExtrator.extract( html, reduceTo, function( err, data ){
if( err ){
throw( err )
} else {
console.log( "String", data );
//{
// meta: {
// title: 'Super page',
// description: 'Look at this super page',
// keywords: ['X', 'Y', 'Z'],
// generator: 'Super pageCMS'
// },
// body: 'First article € Lorem ipsum dolor sit amet ... Second article ... Aenean commodo ligula eget dolor. ',
// h1: ['My super page2', 'First article €', 'Second article ...']
//}
}
});
var reduceToList = {
tag: "div",
attr: "id",
val: "content",
list: true
};
myExtrator.extract( html, reduceToList, function( err, data ){
if( err ){
throw( err )
} else {
console.log( "List", data );
//{
// meta: {
// title: 'Super page',
// description: 'Look at this super page',
// keywords: ['X', 'Y', 'Z'],
// generator: 'Super pageCMS'
// },
// body: [
// 'ABC 1 Lorem ipsum dolor sit amet ... ',
// 'ABC 2 Lorem ipsum dolor sit amet ... '
// ],
// h1: ['My super page2', 'First article', 'Second article']
//}
}
});
`> see
test/readme_example_advanced or run in TonicWork in progress
html-extractor is work in progress. Your ideas, suggestions etc. are very welcome.Release History
|Version|Date|Description|
|:--:|:--:|:--|
|0.2.2|2016-07-1|Fixed trimming when reduced.list is active #3. Thanks to Javier Castro|
|0.2.1|2016-06-30|Fixed handling of html entities #1. Thanks to Javier Castro|
|0.2.0|2016-06-20|Added option to return reduced elements as list; Fixed reduced value check for classes; Optimized dev env.|
|0.1.4|-|Updated and pinned dependencies and optimized tests|
|0.1.3|-|Fixed extraction to remove style-tag content|
|0.1.2|-|Updated documentation|
|0.1.1|-|Added raw documentation; Fixed travis.yml` |
(The MIT License)
Copyright (c) 2016 M. Peter, http://www.tcs.de
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.