Is there any way to print html formatted text using node-printer?

925 Views Asked by At

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.

0

There are 0 best solutions below