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

zpl-label-generator

v1.1.2

Published

JS code to build valid ZPL commands to print text at any point size. All fields will occupy the full label width, text will wrap and the next field will print relative to the previous field.

Downloads

61

Readme

ZPL Label Generator

JS code to build valid ZPL commands to print text at any point size. All fields will occupy the full label width, text will wrap and the next field will print relative to the previous field.

No origins etc need to be set, just configure label size and margins in config.js

Usage:

Install via NPM:

$ npm install zpl-label-generator

Import:

import { Label, Alignment, LabelConfig } from 'zpl-label-generator';

// 6dpmm = 152dpi
// 8dpmm = 203dpi
// 12dpmm = 300dpi
// 24dpmm = 600dpi

config: LabelConfig = {
    dpmm: 8,
    dpi: 203,
    widthMM: 60,
    heightMM: 151,
    defaultLineSpacing: 1,
    defaultPointSize: 6,
    defaultFont: '0',
    marginsMM: {
        top: 10,
        right: 4,
        bottom: 10,
        left: 4,
    },
};

label = new Label(this.config);

const sampleText = `Marty you gotta come back with me. Don't worry, I'll take care of the lightning, you take care of your pop. By the way, what happened today, did he ask her out? Over there, on my hope chest. I've never seen purple underwear before, Calvin. Don't pay any attention to him, he's in one of his moods. Sam, quit fiddling with that thing, come in here to dinner. Now let's see, you already know Lorraine, this is Milton, this is Sally, that's Toby, and over there in the playpen is little baby Joey. You're gonna be in the car with her.`;

this.label.addText('Back to the Future', 20);
this.label.addText('1985', 10);
this.label.addSpacingMm(5);
this.label.addText('Synopsis', 10);
this.label.addSpacingMm(2);
this.label.addText(sampleText, 6);
this.label.addSpacingMm(2);
this.label.addFieldBlock(sampleText, 6, 9, Alignment.JUSTIFIED);
this.label.addSpacingMm(2);
this.label.addText(sampleText, 6);
this.label.addText('End of Label', 10);

this.zpl = this.label.generateZPL();

addText(data: string, pointSize: number)

Allows text to be added similar to standard ZPL Field Block but provides dynamic height.

addSpacingMm(mm: number)

Will add spacing between fields (in mm).

addFieldBlock(data: string, pointSize: number, lines: number, alignment: Alignment)

Will add text within a field block. Field block allows for text alignment (see typings below for available options), but you must specify number of lines to show.

generateZPL()

Once all content has been added, this will return the ZPL code.

Typings / Enums:

LabelConfig

LabelConfig {
    dpmm: number;
    dpi: number;
    widthMM: number;
    heightMM: number;
    defaultLineSpacing: number;
    defaultPointSize: number;
    defaultFont: string;
    marginsMM: {
        top: number;
        right: number;
        bottom: number;
        left: number;
    };
}

Alignment

Alignment {
    LEFT = "L",
    CENTER = "C",
    RIGHT = "R",
    JUSTIFIED = "J",
}