npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

xml-to-escpos

v1.0.2

Published

ESC/POS with XML interface

Downloads

3

Readme

XML to ESC/POS

Translation/Tradução

🇧🇷 🇺🇸


Cross platform JavaScript library that implements the thermal printer ESC / POS protocol and provides an XML interface for preparing templates for printing.

Features

  • [x] Text
  • [x] Text line
  • [x] Feed line
  • [x] Bold text
  • [x] Underline text
  • [x] Font size
  • [x] Small mode
  • [x] White mode
  • [x] Align
  • [x] QRcode
  • [x] Paper cut node
  • [x] Image (base64) (png only)
  • [x] XML with mustache

Tested manually on following environments or platforms

  • [x] React Native (Android)
  • [x] React Native (iOS)
  • [x] React Native Web
  • [x] Server side (NodeJs)
  • [x] Desktop applications (nwjs & electron)
  • [x] Other node environment (terminal)

Installation

yarn add xml-to-escpos

Or

npm install xml-to-escpos --save

Examples

From plain XML

import { EscPos } from 'escpos-xml';

const xml = `
  <?xml version="1.0" encoding="UTF-8"?>
  <document>
    <text-line>hello world</text-line>
  </document>
`;

const buffer = EscPos.getBufferFromXML(xml);
// send this buffer to a stream (eg.: bluetooth, wifi, usb, etc.)

From XML + Handlebars

import { EscPos } from 'xml-to-escpos';

const xml = `
  <?xml version="1.0" encoding="UTF-8"?>
  <document>
    <text-line>{{foo}}</text-line>
  </document>
`;

const input = {
  foo: 'hello world',
};

const buffer = EscPos.getBufferFromTemplate(template, input);
// send this buffer to a stream (eg.: bluetooth, wifi, usb, etc.)

With an XML template + png image (base64)

const template = `<?xml version="1.0" encoding="UTF-8"?>
  <document>
    <align mode="center">
      <bold>
        <text-line size="1:0">{{title}}</text-line>
      </bold>
        
      <image density="d24">
        {{base64PngImage}}
      </image>
    </align>    
  </document>`;

const input = {
  title: 'PNG - base64',
  base64PngImage: `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAAdklEQVR4nOzQMQ2AUBAEUQInhOCDDq8EAVigQgUaEPA1TLLFFTMCNi9by35Moa5vTU3NqaFsskiySLJIskiySLJIskiySLJIskiySE1Zdf5baut579RU07dkkWSRZJFkkWSRZJFkkWSRZJFkkWSRmrJGAAAA///HQgaco1VmUwAAAABJRU5ErkJggg==`,
};

const buffer = EscPos.getBufferFromTemplate(template, input);
// send this buffer to a stream (eg.: bluetooth, wifi, usb, etc.)

TODO

  • [ ] Font styles (font family)
  • [ ] Barcode
  • [ ] Image bitmap conversion improvements
  • [ ] jpeg support
  • [ ] Add example apps to repo
  • [ ] Removed uglify for some reason, need to bring it back
  • [ ] Improve image rendering

Common issues

If there is any delay you observe while printing with this library it is mostly due to image manipulations (try without image 😬 )

Useful links / resources

  • ESC / POS Commands manual

  • A blog post explaiing about printing images with ESCPOS

  • Similar library for serverside - node-escpos.

  • Limitations on the react-native framework

    • FileReader.readAsArrayBuffer was not implemented.
    • Most of popular image manupulation libraries does not have support for react-native. eg : jimp, Most of popular image manupulation libraries does not have support for react-native. eg : jimp, jpeg-js and sharp. We can use these libraries with some native node lib implemented in react native (some sort of polyfill).
    • Use this node-libs-react-native if we need to use this library in react native (adds some mock or js implementation for fs, stream etc)

    Contributions of any kind welcome! :heart: