node-escpos icon indicating copy to clipboard operation
node-escpos copied to clipboard

🖨️ ESC/POS Printer driver for Node.js

Results 107 node-escpos issues
Sort by recently updated
recently updated
newest added

https://github.com/song940/node-escpos/blob/d04f2b0c99b5bbbfde6100e2ed2f92f9be37db46/packages/printer/src/commands.ts#L180-L202 As can be shown here: `\x1d\x28\x6b\x03\x00\x31\x43` is used for version but as it can be seen [here]: x43 is for size of module on the other hand `x41` is...

First of all, I am just a hobby programmer :) So basically this is my function. I have an order which has many order_pos. From the order_pos i can get...

examples/star_printer_index.js async printReceipt() { const escpos = require('escpos'); escpos.Network = require('escpos-network'); const device = new escpos.Network('192.168.1.48',9100); const printer = new escpos.Printer(device); device.open(function () { printer .font('a') .align("STAR_CA") .style('bu') .size(1, 1)...

Hello, I'm working on a project that involves printing data using Node-escpos library. I'm wondering if there is a built-in retry mechanism in the library that I can use to...

USB interface tested and worked. But I'm getting this error while trying to print by Network interface: ``` Error: connect ECONNREFUSED 192.168.1.119:9100 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1487:16) { errno: -61,...

I don't currently have a thermal printer but want to develop a thermal receipt format. Is it possible to display the output in pdf or browser, so that I can...

Hello, according to your method, I tried to write and print, but when I wrote the background, there was a branch when printing. How can I solve the problem of...

I want to create a REST service with Node.js using Express that prints tickets to ESC/POS bluetooth printer. The actual result my service print only the first time and I...

I’m announcing the release of the ESC/POS driver! 🚀 It is a fork of this library with some improvements. Thanks to the original author. And I'll bring more improvements in...