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

cap-label-printer-plugin

v2.1.0

Published

A capacitor plugin for integrating with any label printer

Downloads

27

Readme

cap-label-printer-plugin

An capacitor plugin for integrating with any label printer

Install

npm install cap-label-printer-plugin
npx cap sync

API

printLabel(...)

printLabel(opts: PrintingOptions) => Promise<void>

Print a label using EPL commands to a specific printer.

| Param | Type | Description | | ---------- | ----------------------------------------------------------- | -------------------------------------------------------------------------- | | opts | PrintingOptions | - The printing options, including printer name, address, and EPL commands. |


discover()

discover() => Promise<PrinterDevices>

Discover available label printer devices.

Returns: Promise<PrinterDevices>


Interfaces

PrintingOptions

Represents the options for printing labels using the EPL (Eltron Programming Language) commands or a base64 encoded string image.

| Prop | Type | Description | | ----------------- | ------------------- | ----------------------------------------------------------------- | | name | string | The name of the printer to use. | | address | string | The network address, device ID, or connection URL of the printer. | | eplCommands | string | The EPL commands to send to the printer for printing. | | image | string | The base64 encoded image to print on the label. | | width | number | The width of the label in pixels. default is 562px | | height | number | The height of the label in pixels. default is auto. | | url | string | The URL of the raw label commands to print. |

PrinterDevices

Represents a collection of printer devices.

| Prop | Type | Description | | ------------- | ---------------------------- | ---------------------------- | | devices | PrinterDevice[] | An array of printer devices. |

PrinterDevice

Represents a printer device with its name, address, and port information.

| Prop | Type | Description | | ------------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- | | name | string | The name or model of the printer device. | | address | string | The network address, device ID, or connection URL of the printer. | | port | 'USB' | 'NET' | 'BT' | 'Browser' | The port protocol used to communicate with the printer. Should be one of "USB", "NET", "BT" (for Bluetooth), or "Browser" |