
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.
Social Media Photo by Agenlaku Indonesia on Unsplash
16 years ago I wrote json.hpack for PHP, JS and C#
14 years ago I re-wrote JSONH for Python, PHP and JS.
A few days ago TOON non-standard format came out.
packatoon module allows anyone to "pack" and "unpack" homogenous collections which is pretty much what any .csv file has done since about forever, except it remains JSON compatible like all previous work did before TOON came out.
As summary, this module simply uses modern JS to accomplish what TOON or JSONH before did without pretending to be, or do, anything else.
example
import { pack, unpack } from 'packatoon';
const collection = [
{ a: 1, b: 2 },
{ a: 3, b: 4 },
];
const packed = pack(collection);
// [2, 'a', 'b', 1, 2, 3, 4]
unpack(packed);
// [{a:1,b:2},{a:3,b:4}]
That's it.
FAQs
Pack JSON collections as TOON like format
The npm package packatoon receives a total of 1 weekly downloads. As such, packatoon popularity was classified as not popular.
We found that packatoon demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.