Receiptline
Markdown for receipts. Printable digital receipts. Generate receipt printer commands and images.
Install / Use
/learn @receiptline/ReceiptlineREADME
ReceiptLine
Markdown for receipts. Printable digital receipts. 🧾
Generate receipt printer commands and images.
|Package|Type|For|Description| |---|---|---|---| |ReceiptLine|SDK for Node.js|Developers|Receipt description language processor| |ReceiptIO|Node.js Console App|Users|Print, Convert, Printer status| |Receipt.js|SDK for JavaScript|Developers|Receipt description language processor<br>Print, Convert, Printer status| |Receipt.js Designer|Tool|All|Edit, Preview, Print| |QR Code Generator|Tool|All|Free QR Code Generator| |ReceiptSharp|.NET Standard library|Developers|Receipt description language processor<br>Print, Convert, Printer status| |Receipt Markdown|VS Code Extension|All|Edit, Preview|
"ReceiptLine" is a coined word from "Receipt" and "Streamline".
Make it more efficient by making it simpler!



Features
The reference implementation of the OFSC ReceiptLine Specification.
http://www.ofsc.or.jp/receiptline/en/
ReceiptLine is the receipt description language that expresses the output image of small roll paper.
It supports printing paper receipts using a receipt printer and displaying electronic receipts on a POS system or smartphone.
It can be described simply with receipt markdown text data that does not depend on the paper width.
This reference implementation also provides the development tool "ReceiptLine Designer" for editing, previewing, hex dumps with a virtual printer, and test printing on receipt printers.
Receipt Printers
- Epson TM series
- Seiko Instruments RP series
- Star MC series
- Citizen CT series
- Fujitsu FP series
Epson TM series (South Asia model) and Star MC series (StarPRNT model) can print with device font of Thai characters.

Installation
$ npm install receiptline
Usage
receiptline.transform() method transforms ReceiptLine document to printer commands or SVG images.
const receiptline = require('receiptline');
const doc = '{code:2012345678903;option:ean,hri}';
// printer example
const printer = {
cpl: 42,
encoding: 'multilingual',
upsideDown: false,
gamma: 1.8,
command: 'escpos'
};
const command = receiptline.transform(doc, printer);
// display example
const display = {
cpl: 42,
encoding: 'multilingual'
};
const svg = receiptline.transform(doc, display);
Method
receiptline.transform(doc[, printer])
Parameters
doc- a string of ReceiptLine document
printer- an object of printer configuration
Return value
- printer commands or SVG images
Printer configuration
cpl- characters per line (default:
48)
- characters per line (default:
encodingmultilingual: Multilingual (including cp437, cp852, cp858, cp866, cp1252)cp437: United States (default)cp852: Central Europeancp858: Western Europeancp860: Portuguesecp863: French Canadiancp865: Nordiccp866: Cyrilliccp1252: Western Europeancp932: Japaneseshiftjis: Japanesecp936: Simplified Chinesegb18030: Simplified Chinesecp949: Koreanksc5601: Koreancp950: Traditional Chinesebig5: Traditional Chinesetis620: Thai
gradient(for printer)false: image processing for text, barcodes, and 2D codestrue: image processing for photos (default)
gamma(for printer)- image gamma correction (range:
0.1-10.0, default:1.8)
- image gamma correction (range:
threshold(for printer)- image thresholding (range:
0-255, default:128)
- image thresholding (range:
upsideDown(for printer)false: normal (default)true: upside down
spacingfalse: no line spacing (default)true: line spacing
cutting(for printer)false: no paper cuttingtrue: paper cutting (default)
margin(for printer)- print margin (left) (range:
0-24, default:0)
- print margin (left) (range:
marginRight(for printer)- print margin (right) (range:
0-24, default:0)
- print margin (right) (range:
commandsvg: SVG (default)text: plain textescpos: ESC/POSepson: 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)generic: ESC/POS (Generic) Experimentalstarsbcs: StarPRNT (SBCS, Thai)starmbcs: StarPRNT (Japanese)starmbcs2: StarPRNT (Chinese, Korean)starlinesbcs: Star Line Mode (SBCS)starlinembcs: Star Line Mode (Japanese)starlinembcs2: Star Line Mode (Chinsese, Korean)emustarlinesbcs: Command Emulator Star Line Mode (SBCS)emustarlinembcs: Command Emulator Star Line Mode (Japanese)emustarlinembcs2: Command Emulator Star Line Mode (Chinsese, Korean)stargraphic: Star Graphic Mode (TSP100LAN)starimpact: Star Mode on dot impact printers Experimentalstarimpact2: Star Mode on dot impact printers (Font 5x9 2P-1) Experimentalstarimpact3: Star Mode on dot impact printers (Font 5x9 3P-1) Experimental
Generate barcodes and QR Codes
receiptline.barcode.generate() method generates a barcode.
receiptline.qrcode.generate() method generates a QR Code.
const bar = { data: '1234', type: 'code39', width: 2, quietZone: true };
const barform = receiptline.barcode.generate(bar);
const qr = { data: 'abcdefgh', level: 'm', quietZone: true };
const qrform = receiptline.qrcode.generate(qr);
Method
receiptline.barcode.generate(symbol)
Parameters
symbol<object>: barcode datadata<string>: data to encodetype<string>: barcode typeupc: UPC-A, UPC-E (check digit can be omitted)ean,jan: EAN-13, EAN-8 (check digit can be omitted)code39: CODE39itf: Interleaved 2 of 5codabar,nw7: Codabar (NW-7)code93: CODE93code128: CODE128- default:
code128
width<number>: module width- range:
2-4 - default:
2
- range:
height<number>: module height- range:
24-240 - default:
72
- range:
hri<boolean>: human readable interpretation- default:
false
- default:
quietZone<boolean>: quiet zone- default:
false
- default:
Return value
- <object>: barcode form
length<number>: barcode width (sum of widths)height<number>: barcode heightwidths<number[]>: bar / space width (quiet zone, bar, space, ... , bar, quiet zone)hri<boolean>: human readable interpretationtext<string>: human readable interpretation text
Method
receiptline.qrcode.generate(symbol)
Parameters
symbol<object>: QR Code datadata<string>: data to encodelevel<string>: error correction levell: Lowm: Middleq: Quartileh: High- default:
l
quietZone<boolean>: quiet zone- default:
false
- default:
Return value
- <Uint8Array[]>: QR Code form (matrix of dark and light modules)
0: light1: dark
QR Code is a registered trademark of DENSO WAVE INCORPORATED.
Transform stream API
receiptline.createTransform() method is the stream version of the receiptline.transform().
const fs = require('fs');
const receiptline = require('receiptline');
const source = fs.createReadStream('example.receipt');
const transform = receiptline.createTransform({ command: 'svg' });
const destination = fs.createWriteStream('example.svg');
source.pipe(transform).pipe(destination);
Method
receiptline.createTransform([printer])
Parameters
printer- an object of printer configuration
Return value
- Transform stream <stream.Transform>
Examples
example/receipt/*
Display digital receipts in the web browser and print paper receipts on the printer as needed.
example/cloud/*
Print order slips from cloud server using Epson Server Direct Print or Star CloudPRNT.
example/nodejs/*
Enter receipt markdown text from the web form, transform it to printer commands on the server, and print it out.
example/js/*
Enter receipt markdown text from the web form, transform it to SVG images on the web browser, and display it.
example/data/*
The documents (receipt markdown text) are the same as the examples in the OFSC ReceiptLine Specification.
example/command/*
Customize the command object to output your own commands.
Libraries
lib/receiptline.js
It works on both web browser and Node.js.
To output printer commands on a web browser, use Receipt.js or Browserify.
$ browserify -o receiptline-full.js receiptline.js
ReceiptLine Designer
Online version is available.
https://receiptline.github.io/designer/
The ReceiptLine Designer provides more features.
- Edit and preview
- Data transmission via TCP socket
- Hex dump view by listening TCP 19100 port

Setup
-
Copy the following files to your working directory
- designer/*
- designer.js
- printers.json
- servers.js
Related Skills
valuecell
10.0kValueCell is a community-driven, multi-agent platform for financial applications.
beanquery-mcp
43Beancount MCP Server is an experimental implementation that utilizes the Model Context Protocol (MCP) to enable AI assistants to query and analyze Beancount ledger files using Beancount Query Language (BQL) and the beanquery tool.
REFERENCE
An intelligent middleware layer between crypto wallets and traditional payment systems.
cashu-skill
A Cashu wallet skill for AI agents
