react-epson-epos-sdk
v0.1.7
Published
React library for managing Epson printers with ePOS SDK support.
Maintainers
Readme
react-epson-epos-sdk
A React library that provides a modern and extensible alternative to the Epson ePOS SDK, enabling seamless management of Epson printer connections, text formatting, and print job handling via HTTP.
Note: This library is a Work in Progress (WIP). While it supports many common functionalities, any unsupported features can be implemented using the
addXmlChunkmethod in thePrinterclass. Contributions and feature requests are welcome!
Features
- Printer Management: Easily manage printer connections and statuses using the
PrinterProvider. - Text Formatting: Customize text alignment, font, size, and style.
- 2D Symbol Support: Add various 2D symbols (e.g., QR Code, PDF417, DataMatrix) to your print jobs with customizable options.
- Custom XML Support: Extend functionality by adding raw XML chunks.
- Automatic Retry: When the printer connection is lost, the library keeps the commands in memory and automatically sends them once the printer is back online.
- React Integration: Built with React for seamless integration into your applications.
- Improved Text Splitting: The addText method has been enhanced to ensure that words are not split across lines. If a word doesn't fit on the current line, it is moved entirely to the next line, improving readability and maintaining proper word boundaries in printed content. This replaces the default behavior of Epson ePOS SDK which breaks text at the character level.
- Async Print Method: Unlike the official Epson ePOS SDK, this library's
printmethod is asynchronous and returns a result (SUCCESSorERROR). This provides better handling and a clearer overview of your print jobs, making it easier to manage printing operations.
Installation
Install the library using npm or yarn:
npm install react-epson-epos-sdkor
yarn add react-epson-epos-sdkPeer Dependencies
Ensure you have the following peer dependencies installed in your project:
react(v17, v18, or v19)react-dom(v17, v18, or v19)
Usage
Setting Up the PrinterProvider
Wrap your application with the PrinterProvider to manage printer connections and state:
import { PrinterProvider } from "react-epson-epos-sdk";
import { PaperSize } from "react-epson-epos-sdk";
const App = () => {
return (
<PrinterProvider printerIp="192.168.0.100" paperSize={PaperSize.SIZE_80MM} isDebugMode={true}>
{/* Your application components */}
</PrinterProvider>
);
};
export default App;Using the usePrinter Hook
The usePrinter hook provides access to the printer context, allowing you to interact with the printer directly:
import { usePrinter, PrintSymbolType, PrinterCutType, PrintSymbolLevel } from "react-epson-epos-sdk";
const PrintButton = () => {
const { printer, status, print } = usePrinter();
const handlePrint = async () => {
if (!printer) {
throw new Error("Printer not found!");
}
// Add text to the print job
printer.addText("Hello, Epson!", { addNewLine: true, capitalize: true });
// Add a 2D symbol (e.g., QR Code)
printer.addSymbol("https://example.com", {
type: PrintSymbolType.QRCODE_MODEL_2,
level: PrintSymbolLevel.LEVEL_M,
width: 4,
});
// Add a cut command
printer.addCut(PrinterCutType.CUT_FEED);
// Send the print job
try {
await print();
console.log("Print job sent successfully!");
} catch (error) {
console.error("Failed to send print job:", error);
}
};
return (
<button onClick={handlePrint} disabled={status !== "CONNECTED"}>
Print
</button>
);
};
export default PrintButton;API Reference
PrinterProvider
| Prop | Type | Description |
| ------------- | ----------- | ----------------------------------------------------------------------- |
| printerIp | string | The IP address of the printer. |
| paperSize | PaperSize | The paper size, using the PaperSize enum. |
| isDebugMode | boolean | (Optional) Enables debug logging for printer status and unprinted data. |
usePrinter Hook
The usePrinter hook provides access to the following:
printer: An instance of thePrinterclass.connection: The current connection status (CONNECTED,DISCONNECTED, etc.).print(): A method to send the current print job to the printer.
Printer Functions
The Printer class provides the following methods for building print jobs:
addText(text: string, options?: AddTextOptions)- Adds text to the print job with optional formatting.
addSymbol(data: string, options: AddSymbolOptions)- Adds a 2D symbol (e.g., QR Code, PDF417, DataMatrix) to the print job with customizable options.
addCut(type?: PrinterCutType)- Adds a cut command to the print job.
addFeedLine(line: number)- Adds a feed line to the print job.
setTextFont(font: PrinterTextFont)- Sets the font for the text.
setTextStyle(style: Partial<TextStyle>)- Sets the style for the text (e.g., bold, underline).
setTextSize(size: TextSize)- Sets the size of the text.
setTextAlign(align: PrinterAlign)- Sets the alignment of the text.
addHorizontalLine()- Adds a horizontal line to the print job.
addXmlChunk(xmlChunk: string)- Adds a raw XML chunk to the print job.
Enums
PrinterTextFont
FONT_AFONT_BFONT_CFONT_DFONT_E
PrinterCutType
CUT_NO_FEEDCUT_FEEDCUT_RESERVEFULL_CUT_NO_FEEDFULL_CUT_FEEDFULL_CUT_RESERVE
PrintColor
COLOR_NONECOLOR_1COLOR_2COLOR_3COLOR_4
PrinterAlign
ALIGN_LEFTALIGN_CENTERALIGN_RIGHT
PaperSize
SIZE_80MMSIZE_58MM
PrintSymbolType
PDF417_standardPDF417_truncatedQRCODE_MODEL_1QRCODE_MODEL_2MAXICODE_MODE_2MAXICODE_MODE_3MAXICODE_MODE_4MAXICODE_MODE_5MAXICODE_MODE_6GS1_DATABAR_STACKEDGS1_DATABAR_STACKED_OMNIDIRECTIONALGS1_DATABAR_EXPANDED_STACKEDAZTECCODE_FULLRANGEAZTECCODE_COMPACTDATAMATRIX_SQUAREDATAMATRIX_RECTANGLE_8DATAMATRIX_RECTANGLE_12DATAMATRIX_RECTANGLE_16
PrintSymbolLevel
LEVEL_0toLEVEL_8(PDF417 error correction levels)LEVEL_L,LEVEL_M,LEVEL_Q,LEVEL_H(QR Code error correction levels)DEFAULT- Note: Aztec Code has error correction levels ranging from 5 to 95 (Default: 23).
Development
This library is still under development. If you encounter any missing features or bugs, feel free to open an issue or submit a pull request. Contributions are always welcome!
License
This project is licensed under the MIT License. See the LICENSE file for details.
