2.1.0 • Published 9 years ago

html-select-to-json v2.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

html-select-to-json

Convert html stream to json based on a schema of selectors

build status

Example

var select = require('html-select-to-json')
var request = require('request')

request('https://github.com/timhudson/html-select-to-json')
  .pipe(select({
    title: 'title',
    href: {selector: 'link[rel="canonical"]', attribute: 'href'},
    readme: '.markdown-body'
  }))
  .pipe(process.stdout)

CLI usage

usage: html-select-to-json SELECTORS

  Convert html stream to json based on a schema of selectors

example: html-select-to-json --title="title" --readme=".markdown-body"

Install

npm install -g html-select-to-json

License

MIT