Skip to content

waingram/csv-transformer

Repository files navigation

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.

About

Transforms CSV to JSON and RDF.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages