I am using https://www.npmjs.com/package/pdf2json npm package which will pick the pdf from the given path and when the pdf parser is ready to parse it, then it triggers an event pdfParser_dataReady
. I want to user this along with async await.
const defineParser = function (path) {
let pdfParser = new PDFParser();
pdfParser.loadPDF(path);
pdfParser.on('pdfParser_dataError', (errData) => console.error(errData.data));
pdfParser.on('pdfParser_dataReady', (pdfData) => {
return initPdfParser(path, pdfData);
});
};
In the above code inside pdfParser_dataReady
i am calling a initPdfParser
which will return some data. And defineParser
function is called from some other function in an async manner.
const uploadEmailDoc = async function (req, h) {
const path = `./controllers/${req.payload.file.hapi.filename}`;
// some operation here
await fs.writeFileSync(path, req.payload.file._data);
return await defineParser(path);
};
My QUESTION is how can i use async await in the above case, so that defineParser
function will wait till the pdfParser_dataReady
event gets triggered and returns the data from the initPdfParser
function, so that uploadEmailDoc
will get the final data and return it. I tried couple of ways, but couldn't find a way to get the response from event callback.
Any help would be really appreciated.