react-native-epson-escposprinter
Version:
A Turbo Module wrapper for the Epson ePOS Printer SDK.
62 lines (46 loc) • 1.98 kB
Markdown
A React Native wrapper of the
[](https://support.epson.net/setupnavi/?PINF=swlist&MKN=TM-T82),
supporting the
[](https://reactnative.dev/docs/the-new-architecture/landing-page)
and classic builds.
The current version embeds these SDKs:
1. [Epson ePOS SDK for Android Version 2.29.0a](https://download3.ebz.epson.net/dsc/f/03/00/16/08/02/21f0a82197a53e72a8deb0253146478c7a19babb/ePOS_SDK_Android_v2.29.0a.zip)
1. [Epson ePOS SDK for iOS Version 2.29.1a](https://download3.ebz.epson.net/dsc/f/03/00/16/08/00/5093ed8b38118fc06ba68bae76770a6cb3cc56e3/ePOS_SDK_iOS_v2.29.1a.zip)
Most of the methods are a simple wrapper of the native SDK. For a complete list
of methods and their details, you may refer to the API reference file found in
the Epson SDK archive.
```tsx
import {
connect,
discoverPrinters,
getPrinterSeriesFromDeviceName,
PrinterLocale,
} from "react-native-epson-escposprinter";
import { ok } from "assert";
for await (const info of discoverPrinters()) {
const series = getPrinterSeriesFromDeviceName(info.deviceName);
ok(series, `Unknown device ${info.deviceName}`);
const printer = await connect(series, PrinterLocale.MODEL_ANK, info.target);
await printer.transaction(async () => {
await printer.addText("ABC");
await printer.sendData();
await printer.clearCommandBuffer();
});
await printer.disconnect();
}
```
1. `yarn install`
1. `cd examples/testprint-app`
1. Prebuild in New Architecture by running `yarn arch:new`, or run
`yarn arch:old` to test in legacy environments.
1. Run `yarn android` to test in Android
1. Run `yarn ios` to test in iOS
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the
repository and the development workflow.
If you use this library at work, consider
[](https://github.com/sponsors/vicary) for a first-class technical
support.