Nodejs version > 8
$ npm install
Modify CsvWriterMixin to prevent error
/node_modules/datadumps/lib/mixin/CsvWriterMixin.js
On line 26, replace this
return target.on('end', function() {
return target._csv.writer.write(null);
});
With this
return target.on('end', function() {
return target._csv.writer.end();
});$ npm run start