node-html2json

2.1.1 • Public • Published

html2json -- Convert Html to Json

NPM

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

Readme

Keywords

Package Sidebar

Install

npm i node-html2json

Weekly Downloads

25

Version

2.1.1

License

MIT

Unpacked Size

13.6 kB

Total Files

8

Last publish

Collaborators

  • uoiszero