a dbf parser - stream version (based on https://github.com/tamtakoe/node-dbf)
npm install dbfstream 


DBFStream
===
This is a stream base .dbf Parser
Based on https://github.com/tamtakoe/node-dbf
@source: dbf file path / readable streamconst dbf = dbfstream(source, encoding);
``js
const dbfstream = require('dbfstream');
var dbf = dbfstream('./test.dbf', 'utf-8');
`
`js`
dbf.on('header', header => {
console.log(header);
});
`js
dbf.on('readable', () => {
console.log(stream.read());
});
//or flowing mode
dbf.on('data', (data) => {
console.log(data);
});
`
`js`
dbf.on('error', (err) => {
console.log(err);
});
* Due to how the parser is written, currently the only condition that emits an error is insufficient bytes in the header.
`js``
dbf.on('end', () => {
console.log('stream end');
});