Socket
Socket
Sign inDemoInstall

pagetojson

Package Overview
Dependencies
47
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pagetojson

Convert HTML page parts into JSON objects


Version published
Weekly downloads
1.7K
decreased by-28.85%
Maintainers
1
Install size
3.69 MB
Created
Weekly downloads
 

Readme

Source

pagetojson

Convert HTML page parts provided in an Object Array into JSON objects:

Installation

npm install pagetojson

Usage

const pagetojson = require('../lib/pagetojson');

const converted = pagetojson.convert('HTML-STRING', {
    tags: ['table', 'ol', 'ul']
})

console.log(converted)

// Result:
{
    table: [
        0: [...]
        1: [...]
        2: [...]
    ],
     ol: [
        0: [...]
        1: [...]
        2: [...]
    ],
    ul: [
         0: [...]
         1: [...]
         2: [...]
    ]
}

Abstraction

Providing an Abstraction layer for implementing own "toJson"-conversions. Once a reference to pagetojson is defined a package can extend AbstractToJson and must implement the two methods convert and convertUrl.

Keywords

FAQs

Last updated on 15 Jun 2018

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