
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
short-base16
Advanced tools
This library uses Unicode to shorten base16 strings into half their length and also provides functionality to unshorten them.
This library uses Unicode to shorten base16 strings into half their length and also provides functionality to unshorten them.
To install the library, use npm:
npm install short-base16
To shorten a base16 string, use the shortenBase16 function:
import { shortenBase16 } from 'short-base16';
const base16String = "48656c6c6f20576f726c64"; // "Hello World" in base16
const shortened = shortenBase16(base16String);
console.log(shortened); // Outputs the shortened Unicode string
To unshorten a base16 string, use the unshortenBase16 function:
import { unshortenBase16 } from 'short-base16';
const shortBase16String = "Hello World"; // Example shortened string
const unshortened = unshortenBase16(shortBase16String);
console.log(unshortened); // Outputs the original base16 string
build: Compiles the TypeScript code to JavaScript.Patiparnne Vongchompue
ISC
FAQs
This library uses Unicode to shorten base16 strings into half their length and also provides functionality to unshorten them.
We found that short-base16 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.