Socket
Book a DemoInstallSign in
Socket

html-tables-to-json

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-tables-to-json

Parser for HTML to JSON

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

Parser for <table> to JSON

A simple and easy to use parser for HTML table to JSON


Installation

$ npm install html-tables-to-json

Usage

import { CheerioTableParser } from "html-tables-to-json"

const tableParser = new CheerioTableParser()
const result = tableParser.parse(
  `
  <table>
    <tbody>
      <tr>
        <th>header 1</th>
        <th>header 2</th>
      </tr>
      <tr>
        <td>cell 1</td>
        <td>cell 2</td>
        <td>cell 3</td>
      </tr>
      <tr>
        <td colspan="2">cell 4</td>
      </tr>
    </tbody>
  </table>
  `
)

console.log(result[0])
// => output
// [
//  ["header 1", "header 2"],
//  ["cell 1", "cell 2", "cell 3"],
//  ["cell 4", "cell 4"],
// ]

Keywords

html

FAQs

Package last updated on 23 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts