Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gauntface/printboy

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gauntface/printboy

A simple service to print labels.

  • 0.0.13
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Printboy

A simple service to print labels.

This is built for personal use case of easily printing return labels from a Raspberry Pi but there is no reason it couldn't be altered and improved for your use-cases.

It works by "generating" a label on a HTML canvas which is saved as a png and then printed via an lp command.

Printboy

Setup

Print install

The first thing to do is ensure the printer works via CUPs.

A lot of this is from these articles:

  • https://www.baitando.com/it/2017/12/12/install-dymo-labelwriter-on-headless-linux
  • https://www.taklischris.info/other/use-your-dymo-printer-on-ubuntu
  1. Install CUPs sudo apt-get install -y git cups cups-client printer-driver-dymo or sudo dnf install cups-deve;

  2. Get printer definition

    1. git clone https://github.com/matthiasbock/dymo-cups-drivers.git
    2. sudo mkdir -p /usr/share/cups/model
    3. sudo cp dymo-cups-drivers/ppd/lw450.ppd /usr/share/cups/model/
  3. Add yourself as a cups admin sudo usermod -a -G lpadmin $USER

  4. Allow remote access to cups:

    sudo cupsctl --remote-admin
    sudo service cups restart
    
  5. Go to CUPs admin page http://localhost:631

    1. Use your computer login credentials for the username and password for the site
  6. Install the printer

    1. IMPORTANT: Use DYMO_LabelWriter_450_Turbo for the printer name, otherwise printboy will not work.
    2. Cups should pick the correct driver for you.
    3. For general:
      • Output Resolution: 300x600 DPI
      • Print Quality: Barcodes and Graphics
      • Media Size:
        • 30252 Address: 1-1/8" x 3"
        • 30364 Name Badge: 2-1/4" x 4"
  7. Run a test print

Install printboy

  1. Install node
  2. Run npm install @gauntface/printboy
  3. Run cd node_modules/@gauntface/printboy
  4. Run npm run setup
  5. Look at the output for the pm2 command to setup startup
Optional: Install Reverse Proxy
  1. Run sudo apt update && sudo apt install nginx

  2. Run sudo nano /etc/nginx/sites-available/default

    1. Change the location / { block to use:

      location / {
              # First attempt to serve request as file, then
              # as directory, then fall back to displaying a 404.
              # try_files $uri $uri/ =404;
              proxy_pass http://localhost:1314;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection 'upgrade';
              proxy_set_header Host $host;
              proxy_cache_bypass $http_upgrade;
              proxy_cache_valid 5m;
      }
      
  3. Check for errors with sudo nginx -t

  4. Restart with sudo systemctl restart nginx

FAQs

Package last updated on 04 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc