Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 701 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 701 Bytes

Transforms CSV to JSON in accordance with the specifications set by the W3C’s CSV on the Web Working Group.

Getting Started

(Coming soon)

Documentation

(Coming soon)

Examples

var request = require('request'),
    csvTransformer = require('csv-transformer');

var csv = 'http://example.com/test.csv',
    metadata = 'http://example.com/metadata.json',
    csvTransformer = new csvTransformer({
      csv: csv,
      metadata: metadata
    });

request.get(csv)
  .pipe(csvTransformer)
  .pipe(console.stdout);

Contributing

Contributions welcome

License

Copyright (c) 2015 Bill Ingram
Licensed under the UofI-NCSA license.