Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 916 Bytes

File metadata and controls

25 lines (17 loc) · 916 Bytes

barcoder

Creates barcodes either from user input or a barcode scanner. The primary purpose is to encode printer commands such as EPL commands into a 2D barcode; online barcode generators aren't sufficient for this since EPL commands must be separated by a line feed(LF). This program converts all line endings to LF behind the scene and all text inputs can be encoded into a 2D barcode.

alt app-screenshot

Build

To build the app, install dependencies first. Check https://github.com/electron-userland/electron-packager for more info.

npm install

To test run it, just do

npm start

To build platform-specific bundle, run electron-packager for the target platform and arch. For example,

electron-packager ./ appName --platform=win32 --arch=x64

Then you can just run the exe file in the appName folder.