ZPL printer / JS provider

★★★★★
★★★★★
291 users
<
>
Dremel f013ms20jb Moto-Saw ms20-1/5 2-in-1 Compact Scroll Saw (70 W
★★★★★
★★★★★
Carpenter, Sabrina-Evolution (cd)
★★★★★
★★★★★
Alchemy Damned Damnation Dart Flights - Standard
★★★★★
★★★★★
Fisher Price Preschool Little People Set Of 3
★★★★★
★★★★★
Toprenddon Mini Electronic Calculator Keychains, 8 Digits Flip Calculator with Key Ring Portable Calculator Hanging Pendant for Home Office Kids
★★★★★
★★★★★
DMC Six Strand Embroidery Floss, 6 Skeins, Trendy Color Palette Pack
★★★★★
★★★★★

Allow to print any raw data from JavaScript at any opened page directly to any .ZPL printer like Zebra


Usage:
Print barcode 1234567

window.postMessage(
{
    type: "zpl",
    cmd: "print",
    printer: 'http://127.0.0.1:9100',
    raw: "^XA^FO50,50^B8N,100,Y,N^FD1234567^FS^XZ"
});

Listen extension:

window.addEventListener("message", function (event){
    if (event.data && event.data.type && event.data.type == 'from_zpl_ext') {
        // receive version of extension if exists
        if (event.data.cmd === 'version') {
            ZPL_EXTENSION_VERSION = event.data.value;
            return;
        }
        // receive status of printing
        if (event.data.cmd === 'status') {
            console.log(event.data)
            return;
        }
    }
}, false);
Related