Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@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.
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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.