Code Monkey home page Code Monkey logo

Comments (2)

mwsoofy avatar mwsoofy commented on June 11, 2024

have you found any solutions or alternatives ?

from node-thermal-printer.

adnanlah avatar adnanlah commented on June 11, 2024

have you found any solutions or alternatives ?

This is one of the alternatives that worked for me. My original plan is to run node-thermal-printer without @thiagoelg/node-printer because the latter didn't get installed in my electron app.

let tp = new ThermalPrinter({
    type: PrinterTypes.EPSON, // Printer type: 'star' or 'epson'
    interface: "printer:Xprinter XP-T371U", // Printer interface
    characterSet: CharacterSet.ISO8859_2_LATIN2, // Printer character set
    options: {
      timeout: 5000, // Connection timeout (ms) [applicable only for network printers] - default: 3000
    },
    driver: {}, // Empty object
  });

tp.println("Hello World"); 
tp.table(["One", "Two", "Three"])
tp.cut();

const raw = tp.getBuffer()

let device = usb.findByIds(/*vid*/8137, /*pid*/8214);
if (device) {
    device.open();
    console.log(device.interfaces?.at(0)?.endpoints)
    device.interfaces?.at(0)?.claim();
    const outEndpoint = device.interfaces?.at(0)?.endpoints.find(e => e.direction === 'out');
    if (outEndpoint) {
        outEndpoint.transferType = 2;
        outEndpoint.transfer(raw, (err) => {
            device.close();
        });
    }
}

from node-thermal-printer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.