
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Pull requests are very welcome!
$ npm install [-g] japan
$ jp [options] patch.json [...patches] < data.json
Pretty prints resulting data JSON.
The patches consist on an array of operations, each one contained in another array:
[
[<path>, <operation>, <argument>],
[<path>, <operation>, <argument>],
...
]
path
- A path in data object to operate. Supports dot notation, like "a.b.c" or "a.b.0".operation
- One of the implemented operations.argument
- Argument for the operation.fetch()
- Returns value stored on the selected path.put(value)
- Adds value
to the selected path, creating parent objects as needed.remove()
- Removes key and contents stored on the selected path.move(
path)
- Moves contents to given path
, removing them from the selected path.copy(
path)
- Copy contents to given path
.This module also provides a class for using in your Node.js application.
var Patcheable = require('japan').Patcheable;
var data = Patcheable({"a":{"b":2},"c":2}); // Example data object
// Patcheable.prototype.getKey(path)
// Used to get mutable slices of data object on selected path
// NOTE: Throws error if key is not accessible
console.log(data.getKey("a.b")); // { root: { b: 2 }, value: 'b' }
// Patcheable.prototype.makeKey(path)
// Used to generate mutable slices of data object on selected path
console.log(data.getKey("a.c.x.z")); // { root: { z: {} }, value: 'z' }
// Common operations
console.log(data.fetch("a")); // { b: 2 }
console.log(data.put("a.c", 3)); // 3
console.log(data.copy("c", "a.b")); // 2
console.log(data.move("a.c", "c")); // 3
console.log(data.remove("c")); // 3
// You can use data as a normal object
console.log(JSON.stringify(data)); // '{"a":{"b":2}}'
$ echo '{"a":1,"c":2}' > data.json
$ echo '[["d.f", "put", 4], ["c", "move", "a.b.c"]]' > patch1.json
$ echo '[["d", "remove"], ["a.b.c", "copy", "d"], ["a.b.c", "put", 5]]' > patch2.json
$ jp patch1.json patch2.json < data.json
{"a":{"b":{"c":5}},"d":2}
FAQs
JSON patcher
The npm package japan receives a total of 2 weekly downloads. As such, japan popularity was classified as not popular.
We found that japan 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.