0.5.4 • Published 10 years ago

html-table-stream v0.5.4

Weekly downloads
76
License
CC0
Repository
github
Last release
10 years ago

html-table-stream

Read and write HTML tables as data in Node.

Install it with npm:

npm install html-table-stream

Now you can parse some HTML tables, for example, US state FIPS codes:

var table = require('html-table-stream');
var request = require('request');
var ndjson = require('ndjson');

request('http://www.epa.gov/envirofw/html/codes/state.html')
  .pipe(table.parse())
  .pipe(ndjson.stringify())
  .pipe(process.stdout);
0.5.4

10 years ago

0.5.3

10 years ago

0.5.2

10 years ago

0.4.0

10 years ago

0.3.3

10 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago