Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
@gauntface/printboy
Advanced tools
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.
The first thing to do is ensure the printer works via CUPs.
A lot of this is from these articles:
Install CUPs sudo apt-get install -y git cups cups-client printer-driver-dymo
or sudo dnf install cups-deve;
Get printer definition
git clone https://github.com/matthiasbock/dymo-cups-drivers.git
sudo mkdir -p /usr/share/cups/model
sudo cp dymo-cups-drivers/ppd/lw450.ppd /usr/share/cups/model/
Add yourself as a cups admin sudo usermod -a -G lpadmin $USER
Allow remote access to cups:
sudo cupsctl --remote-admin
sudo service cups restart
Go to CUPs admin page http://localhost:631
Install the printer
DYMO_LabelWriter_450_Turbo
for the printer
name, otherwise printboy
will not work.1-1/8" x 3"
2-1/4" x 4"
Run a test print
npm install @gauntface/printboy
cd node_modules/@gauntface/printboy
npm run setup
Run sudo apt update && sudo apt install nginx
Run sudo nano /etc/nginx/sites-available/default
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;
}
Check for errors with sudo nginx -t
Restart with sudo systemctl restart nginx
FAQs
A simple service to print labels.
The npm package @gauntface/printboy receives a total of 1 weekly downloads. As such, @gauntface/printboy popularity was classified as not popular.
We found that @gauntface/printboy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.