tesseract Calling an asynchronous function without callback is deprecated. code example
Example: tesseract Calling an asynchronous function without callback is deprecated.
In node-tesseract's folder modify tesseract.js:
Before:
fs.unlink(files[0]);
Now:
fs.unlink(files[0], err => { if (err) console.log(err) });