Socket
Socket
Sign inDemoInstall

html-tables-to-json

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    html-tables-to-json

Parser for HTML to JSON


Version published
Weekly downloads
74
decreased by-36.75%
Maintainers
1
Install size
2.52 MB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 23 Aug 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc