
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.
Fast and easy Quad Tree implementation for node.js
Add reference:
var QuadNode = require('./QuadNode.js');
Create QuadTree (4 childs per level, max 10 levels)
var quadTree = new QuadNode({ minx: -100, miny: -100, maxx: 100, maxy: 100 }, 4, 10);
Insert item
var item0 = {
bound: { minx: 0, miny: 0, maxx: 10, maxy: 10 },
id: 0
};
quadTree.insert(item0);
Search
var bound = { minx: 5, miny: 5, maxx: 8, maxy: 8 };
quadTree.find(bound, function(item) {
console.log("Found item id="+item.id);
});
Check if any item exists in specified bounds
var bound = { minx: 5, miny: 5, maxx: 8, maxy: 8 };
if (quadTree.any(bound)) {
console.log("specified boundary contains at least one item");
}
Check if any item exists in specified bounds with item filter
var bound = { minx: 5, miny: 5, maxx: 8, maxy: 8 };
if (quadTree.any(bound, function(item) { return item.id==0; })) {
console.log("specified boundary contains at least one item with id==0");
}
Update item
item0.bound = { minx: 20, miny: 20, maxx: 25, maxy: 25 };
quadTree.update(item0);
Remove item
quadTree.remove(item0);
Clear all
quadTree.clear();
FAQs
Fast and easy quad-tree implementation for node.js
We found that quad-node 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
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.