Skip to content

xepe10/etl-persona

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

etl-persona

About

Nodejs version > 8

Install dependencies

$ 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();
    });

Run

$ npm run start

Node datadumps

Official repo

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors