Good day to all.
There is a ZIP archive with several DBF files .
Using Node JS, you need to extract them in readableStream (without writing to disk) and process it in the DBF parser. I use the " DBFStream " package to parse dbf

const dbfstream = require('dbfstream') const fs = require('fs') //------------------------------------------ // Extract pdf to readableStream //------------------------------------------ // if source is already a readableStream, use it, otherwise treat as a filename let dbf = dbfstream('readableStream', 'Windows-1251'); dbf.on('data', (data) => { console.log(data); }); 

    0