Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pagetojson

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pagetojson

Convert HTML page parts into JSON objects

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4K
decreased by-30.8%
Maintainers
1
Weekly downloads
 
Created
Source

NPM

Build Coverage Status Dependencies Known Vulnerabilities

pagetojson

This project is meant to be a "shell" around other 'tagname'tojson projects like tabletojson. When implementing a specific tag in a separate project one can decide to either use the full blown shell or the little project just needed for his use case.

So ... it basically converts just parts that are known yet into an Object Array of JSON objects. This list will grow over the time, so feel free to attend here and add your own 'tagname'tojson which will be added to the dependencies list.

Installation

npm install pagetojson

Usage

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

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

console.log(converted)

// Result:
{
    table: [
        0: [...],
        1: [...],
        2: [...]
    ],
     list: [
         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

Package last updated on 08 Feb 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc