
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
tree-climber
Advanced tools
Traverses a JavaScript tree like structure. Calls a callback when visiting each node with the key, value, and current tree path.
Performs a traversal of a tree.
Calls a visitor
function on each node.
npm install tree-climber --save
var tree = require('tree-climber');
var Promise = require('promise');
tree.climb({
path1: {
node1: 'value1',
path2: {
node2: 'value2',
path3: {
node3: 'value3'
}
}
}
}, visitor);
function visitor (key, value, path) {};
// Calls to visitor will be:
// 'node1', 'value1', 'path1.node1'
// 'node2', 'value2', 'path1.path2.node2'
// 'node3', 'value3', 'path1.path2.path3.node3'
tree.climbAsync({
path1: {
node1: 'value1',
path2: {
node2: 'value2',
path3: {
node3: 'value3'
}
}
}
}, visitorAsync)
.then(console.log);
// ['foo', 'foo', 'foo']
function visitorAsync (key, value, path) {
console.log(arguments);
return Promise.resolve('foo');
}
// Calls to visitor will be:
// 'node1', 'value1', 'path1.node1'
// 'node2', 'value2', 'path1.path2.node2'
// 'node3', 'value3', 'path1.path2.path3.node3'
obj
{Array|Object} The "tree" to visit each node on.visitor
{Function} Called when visiting a node.
key
{String} The key of this node.value
{Mixed} The value of this node.path
{String} The full path of the tree to this node.sep
{String} An optional override for the path separator. Defaults to .
.obj
{Array|Object} The "tree" to visit each node on.visitor
{Function} Called when visiting a node.
key
{String} The key of this node.value
{Mixed} The value of this node.path
{String} The full path of the tree to this node.sep
{String} An optional override for the path separator. Defaults to .
.Allows the user to perform asynchronous work on each node of the tree. Chains promises
in such a way that race conditions are avoided. As an example if there was a path a->b->c and
a->b->d, tree.climbAsync
would wait for one of those paths to resolve before processing the other one
since they share a common ancestor.
FAQs
Traverses a JavaScript tree like structure. Calls a callback when visiting each node with the key, value, and current tree path.
The npm package tree-climber receives a total of 1 weekly downloads. As such, tree-climber popularity was classified as not popular.
We found that tree-climber 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.