
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
escpos-custom
Advanced tools
ESC/POS Printer driver for node
$ npm i escpos --save
$ yarn add escpos
const escpos = require('escpos');
// install escpos-usb adapter module manually
escpos.USB = require('escpos-usb');
// Select the adapter based on your printer type
const device = new escpos.USB();
// const device = new escpos.Network('localhost');
// const device = new escpos.Serial('/dev/usb/lp0');
const options = { encoding: "GB18030" /* default */ }
// encoding is optional
const printer = new escpos.Printer(device, options);
device.open(function(error){
printer
.font('a')
.align('ct')
.style('bu')
.size(1, 1)
.text('The quick brown fox jumps over the lazy dog')
.text('敏捷的棕色狐狸跳过懒狗')
.barcode('1234567', 'EAN8')
.table(["One", "Two", "Three"])
.tableCustom(
[
{ text:"Left", align:"LEFT", width:0.33, style: 'B' },
{ text:"Center", align:"CENTER", width:0.33},
{ text:"Right", align:"RIGHT", width:0.33 }
],
{ encoding: 'cp857', size: [1, 1] } // Optional
)
.qrimage('https://github.com/song940/node-escpos', function(err){
this.cut();
this.close();
});
});
./examples for more examples.const usbDevice = new escpos.USB();
const usbPrinter = new escpos.Printer(usbDevice);
const serialDevice = new escpos.Serial('/dev/usb/lp0');
const serialPrinter = new escpos.Printer(serialDevice);
const bluetoothDevice = new escpos.Bluetooth('01:23:45:67:89:AB', 1);
const bluetoothPrinter = new escpos.Printer(bluetoothDevice);
const networkDevice = new escpos.Network('localhost');
const networkPrinter = new escpos.Printer(networkDevice);
Escpos inherits its methods to the printers. the following methods are defined:
Prints raw text. Raises TextError exception.
For the encode type, see the iconv-lite wiki document. Escpos uses iconv-lite for encoding.
If the type is undefined, the default type is GB18030.
Prints an image at a set density.
Density consists of a character signaling the base density setting, s for single, d for double, followed by an integer for image sampling - 8 (8-bit) or 24.
printer.align('ct')
.image(image, 's8')
.then(() => {
printer.cut()
.close();
});
Sets the encoding value globally. default type is GB18030 (Chinese)
printer
.encode('EUC-KR')
.text('동해물과 백두산이 마르고 닳도록');
Carrier feed and tabs.
align is a string which takes any of the following values:
Set text properties.
align set horizontal position for text, the possible values are:
Default: LT
font type could be A or B. Default: A
width is a numeric value, 1 is for regular size, and 2 is twice the standard size. Default: 1
height is a numeric value, 1 is for regular size and 2 is twice the standard size. Default: 1
Prints a barcode.
"code" is an alphanumeric code to be printed as bar code "barcodeType" must be one of the following type of codes:
The EAN type automatically calculates the last parity bit. For the EAN13 type, the length of the string is limited to 12, and EAN8 is limited to 7. (#57)
If you wish to disable the parity bit you must set "includeParity": false in the options provided to the command.
"options"
"options.width" (default=1) is a numeric value ranging between 1 up to 5.
"options.height" (default=100) is a numeric value ranging between 1 up to 255.
"options.includeParity" (default=true) When true parity bit is calculated for EAN13/EAN8 bar code
"options.position" (default=BLW) where to place the barcode numeric value: OFF|ABV|BLW|BTH
"options.font" (default=A) the font size: A|B
Raises BarcodeTypeError, BarcodeSizeError, BarcodeCodeError exceptions.
For backward compatibility the old method interface is still supported:
barcode("code", "barcodeType", width, height, "position", "font")
Cut paper.
mode set a full or partial cut. Default: full Partial cut is not implemented in all printers.
*** Don't foget this, because cut will flush buffer to printer ***
Sends a pulse to the cash drawer in the specified pin.
pin is a numeric value which defines the pin to be used to send the pulse, it could be 2 or 5. Raises `CashDrawerError()``
Printer Buzzer (Beep sound).
"n" Refers to the number of buzzer times. "t" Refers to the buzzer sound length in (t * 100) milliseconds.
Thanks to our contributors 🎉👏
Copyright (c) 2015 lsong
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
ESC/POS Printer driver for nodejs
We found that escpos-custom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.