I am working on POS applicatoin using Electron with Reactjs. Is there any way to print a html layout silently(without showing preview). Tried with node-printer module but not able to print html format. I have tried with below code:
var avlblePrinter = Printer.list();
var printer = new Printer.default(avlblePrinter[n]);
var text = '<p style="color: #00b9f5">Print text directly</p>, when needed: e.g. barcode printers';
var jobFromText = printer.printText(text);
Any help would be highly appreciable.