1.0.5 • Published 6 years ago

gulp-excel2json-lee v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

gulp-excel2json

Excel (XLSX/XLS) to json.

Usage

First, install gulp-excel2json as a development dependency:

> npm install --save-dev gulp-excel2json

Then, add it to your gulpfile.js:

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

gulp.task('copy', function() {
    gulp.src('config/**.xlsx')
        .pipe(excel2json({
            headRow: 1,
            valueRowStart: 3,
            trace: true
        }))
        .pipe(gulp.dest('build'))
});

API

excel2json(options)

options.headRow

Type: number

Default: 1

The row number of head. (Start from 1).

options.valueRowStart

Type: number

Default: 3

The start row number of values. (Start from 1)

options.trace

Type: Boolean

Default: false

Whether to log each file path while convert success.

License

MIT © Chris