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.
Improved pbcopy/pbpaste for OSX
The standard pbcopy and pbpaste utilities can manipulate the plaintext clipboard but have no easy way of accessing the HTML pasteboard. This module and CLI tool provide a more convenient way to access the pasteboard from node.
To get data from a specific pasteboard:
$ npx pb [type]
$ npx pb -m <type>
To set a specific pasteboard, pipe data into pb:
$ get_data | npx pb -s [type]
To list available pasteboards:
$ npx pb -l
For example, to grab the contents of the HTML pasteboard and put it on the plaintext pasteboard:
$ npx pb -m html | npx pb -s
From node, pb
exposes:
get(type)
: get pasteboard data from specified pasteboardset(type, data)
: set pasteboard data (overwrites other pasteboards)available()
: enumerate available pasteboardsThis example gets the pasteboard HTML data and copies to plaintext pasteboard:
var pb = require('pb');
var HTMLOutput = pb.get('html');
pb.set('text', HTMLOutput);
type | description |
---|---|
NSStringPboardType | plaintext |
NSHTMLPboardType | HTML |
NSRTFPboardType | RTF |
Please consult the attached LICENSE file for details. All rights not explicitly granted by the Apache 2.0 license are reserved by the Original Author.
FAQs
Interface to OSX Pasteboard
The npm package pb receives a total of 3 weekly downloads. As such, pb popularity was classified as not popular.
We found that pb 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.