1.0.4 • Published 6 years ago

wi-etl v1.0.4

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

#wi-etl (Export-Transform-Load)

npm i --save wi-etl

let wiETL = require('wi-etl');
let sourceDB = {};
let destitantionDb = {};
let tablesQueue = ['project','well','dataset'];
wiETL.configSourceDb(sourceDB);
wiETL.configDestinationDb(destitantionDb);
wiETL.executeJob(tablesQueue, function(err, success) {
    console.log("Done!")
});