node-html2json
v2.1.1
Published
html2json's convert html to json library.
Downloads
17
Readme
html2json -- Convert Html to Json
Convert HTML to JSON library.
Simple to use
let toJson = require("node-html2json");
//return a json object
toJson(html, mapping);
html2json is designed to convert html to json object, JQuery like.
let mapping = {
title: "head>title"
};
//json = {"title": "THE html title"}
let json = toJson(html, mapping);
Attribute
get title element text by default.
{
title: "head>title";
}
to get attribute 'href'.
{
title: {
selector: "some <a> Tag",
attr: "href"
}
}
Foreach
use foreach like this.
const mapping = {
results: {
selector: ".result",
foreach: {
title: ".c-title>a",
url: {
selector: ".c-title>a",
attr: "href"
}
}
}
};
Function
object value could be a function with an parameter "element", which is an cheerio object.
const mapping = {
title: function(element) {
let text = element
.find("head>title")
.text()
.trim();
return text.split("_")[0];
}
};
Current Element
use "." to represent the current element.
const mapping = {
results: {
selector: ".result",
foreach: {
title: ".c-title>a",
id: {
selector: ".",
attr: "id"
}
}
}
};
Test Useage
yarn test