A print library for receipt printers, simple and easy CLI / API with markdown, printer status support.
$ more receiptmd.txt
^^^RECEIPT
12/18/2021, 11:22:33 AM
Asparagus | 1| 1.00
Broccoli | 2| 2.00
Carrot | 3| 3.00
---
^TOTAL | ^6.00
$ receiptio -d 192.168.192.168 -p escpos -c 42 receiptmd.txt
success
const receiptio = require('receiptio');
const receiptmd = `^^^RECEIPT
12/18/2021, 11:22:33 AM
Asparagus | 1| 1.00
Broccoli | 2| 2.00
Carrot | 3| 3.00
---
^TOTAL | ^6.00`;
receiptio.print(receiptmd, '-d 192.168.192.168 -p escpos -c 42').then(result => {
console.log(result);
});
ReceiptIO is a simple print library for receipt printers that prints with easy markdown data for receipts and returns printer status. Even without a printer, it can output images.
A development tool is provided to edit and preview the receipt markdown.
https://receiptline.github.io/designer/
The details of the receipt markdown are explained at
https://github.com/receiptline/receiptline
- Epson TM series
- Seiko Instruments RP series
- Star MC series
- Citizen CT series
- Fujitsu FP series
Connect with IP address, serial port, or Linux USB device file.
(LAN, Bluetooth SPP, USB with virtual serial port driver, ...)
Epson TM series (South Asia model) and Star MC series (StarPRNT model) can print with device font of Thai characters.
$ npm install -g receiptio
For USB connections on Linux, add a user to the lp
group and reboot to access the device file.
$ sudo gpasswd -a USER lp
If serial port is used, Node SerialPort is also required.
$ npm install -g serialport
When using -i
(print as image) or -p png
(convert to png) option, puppeteer or sharp is also required.
$ npm install -g puppeteer
$ npm install -g sharp
sharp is not support web fonts and minimizes the area of "invert" character decoration.
The options are almost the same as for API.
usage: receiptio [options] [source]
source:
receipt markdown text file
https://receiptline.github.io/designer/
if source is not found, standard input
options:
-h show help
-d <destination> ip address or serial/usb port of target printer
-o <outfile> file to output (if -d option is not found)
if -d and -o are not found, standard output
-p <printer> printer control language
(default: escpos if -d option is found, svg otherwise)
(escpos, sii, citizen, fit, impact, impactb,
star, starline, emustarline, stargraphic,
svg, png) (png requires puppeteer or sharp)
-q check printer status without printing
-c <chars> characters per line (24-48) (default: 48)
-u upside down
-s paper saving (reduce line spacing)
-n no paper cut
-i print as image (requires puppeteer or sharp)
-b <threshold> image thresholding (0-255)
-g <gamma> image gamma correction (0.1-10.0) (default: 1.8)
-t <timeout> print timeout (0-3600 sec) (default: 300)
-l <language> language of source file (default: system locale)
(en, fr, de, es, po, it, ru, ja, ko, zh-hans, zh-hant, th, ...)
print results:
success(0), online(100), coveropen(101), paperempty(102),
error(103), offline(104), disconnect(105), timeout(106)
examples:
receiptio -d COM1 receiptmd.txt
receiptio -d /dev/usb/lp0 receiptmd.txt
receiptio -d /dev/ttyS0 -u -b 160 receiptmd.txt
receiptio -d 192.168.192.168 -p escpos -c 42 receiptmd.txt
receiptio -d com9 -p impact -q
receiptio receiptmd.txt -o receipt.svg
receiptio receiptmd.txt -p escpos -i -b 128 -g 1.0 -o receipt.prn
receiptio < receiptmd.txt -p png > receipt.png
echo {c:1234567890} | receiptio | more
// async/await
const result = await receiptio.print(receiptmd, options);
console.log(result);
// promise
receiptio.print(receiptmd, options).then(result => {
console.log(result);
});
receiptio.print(receiptmd[, options])
receiptmd
<string>- receipt markdown text
options
<string>-d <destination>
: ip address or serial/usb port of target printer- Without
-d
option, the destination is the return value
- Without
-p <printer>
: printer control languageescpos
: ESC/POS (Epson)sii
: ESC/POS (Seiko Instruments)citizen
: ESC/POS (Citizen)fit
: ESC/POS (Fujitsu)impact
: ESC/POS (TM-U220)impactb
: ESC/POS (TM-U220 Font B)star
: StarPRNTstarline
: Star Line Modeemustarline
: Command Emulator Star Line Modestargraphic
: Star Graphic Modesvg
: SVGpng
: PNG (requires puppeteer or sharp)- default:
escpos
(with-d
option)svg
(without-d
option)
-q
: check printer status without printing-c <chars>
: characters per line- range:
24
-48
- default:
48
- range:
-u
: upside down-s
: paper saving (reduce line spacing)-n
: no paper cut-i
: print as image (requires puppeteer or sharp)-b <threshold>
: image thresholding- range:
0
-255
- range:
-g <gamma>
: image gamma correction- range:
0.1
-10.0
- default:
1.8
- range:
-t <timeout>
: print timeout (sec)- range:
0
-3600
- default:
300
- range:
-l <language>
: language of receipt markdown texten
,fr
,de
,es
,po
,it
,ru
, ...: Multilingual (cp437, 852, 858, 866, 1252 characters)ja
: Japanese (shiftjis characters)ko
: Korean (ksc5601 characters)zh-hans
: Simplified Chinese (gb18030 characters)zh-hant
: Traditional Chinese (big5 characters)th
: Thai- default: system locale
- With
-d
option <string>success
: printing successonline
: printer is onlinecoveropen
: printer cover is openpaperempty
: no receipt papererror
: printer error (except cover open and paper empty)offline
: printer is off or offlinedisconnect
: printer is not connectedtimeout
: print timeout
- Without
-d
option <string>- printer commands or images
receiptio.createPrint()
method is the stream version of the receiptio.print()
.
const fs = require('fs');
const receiptio = require('receiptio');
const source = fs.createReadStream('example.txt');
const transform = receiptio.createPrint('-p svg');
const destination = fs.createWriteStream('example.svg');
source.pipe(transform).pipe(destination);
receiptio.createPrint([options])
options
<string>
- Transform stream <stream.Transform>
- Apache License, Version 2.0