
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
given two streams of newline delimited JSON data perform a merge/extend on each object in the stream
given multiple streams of newline delimited JSON data perform a merge/extend on each object in the stream
npm install json-merge -g
Usage: json-merge <source1> [options] <source2> [options] [<source3>...]
Options
--parse=<s> Parse the precedent source with <s>
sources can be one of 3 things:
e.g. given a file a.json:
{"foo": "bar"}
and a file b.json:
{"taco": "pizza"}
then running:
json-merge a.json b.json
would output:
{"foo": "bar", "taco": "pizza"}
you can also specify JSONStream query syntax and json-merge will parse stdin
e.g. if foobar.json is:
{
"data": [
{
"a": {
"all": "lowercase"
},
"b": {
"ALL": "CAPS"
}
}
]
}
then running:
cat foobar.json | json-merge "data.*.a" "data.*.b"
would output:
{"all":"lowercase","ALL":"CAPS"}
A given a file food1.json:
{
"salty":
{
"tacos": "muybien",
"pretzel": "jawohl"
}
}
and a file food2.json:
{
"sweet":
{
"waffle": "delicious",
"pancake": "yummy"
}
}
then running:
json-merge food1.json --parse="salty" food2.json --parse="sweet"
would output:
{"tacos":"muybien","pretzel":"jawohl","waffle":"delicious","pancake":"yummy"}
FAQs
given two streams of newline delimited JSON data perform a merge/extend on each object in the stream
We found that json-merge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.