gulp-tojson

A gulp plugin for transforming data, e.g. CSV to JSON, TSV to CSV, etc.

Usage no npm install needed!

<script type="module">
  import gulpTojson from 'https://cdn.skypack.dev/gulp-tojson';
</script>

README

gulp-transform (WORK IN PROGRESS)

A gulp plugin for transforming data, e.g. CSV to JSON, TSV to CSV, etc.

Getting Started

Install the module with: npm install --save-dev gulp-transform

var transform = require('gulp-transform');

...

gulp.task('data', function() {
    return gulp.src('data/**/*.tsv')
        .pipe(transform().json())
        .pipe(gulp.dest('./build/data'));
});

License

Copyright (c) 2014 Matthew Conlen. Licensed under the MIT license.