0.5.4 • Published 9 years ago

html-table-stream v0.5.4

Weekly downloads
76
License
CC0
Repository
github
Last release
9 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

9 years ago

0.5.3

9 years ago

0.5.2

9 years ago

0.4.0

9 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago