
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Efficient iterable graph data structure.
npm i graph2d --save
// EXAMPLE 1
const Graph2D = require("graph2d");
const graph = new Graph2D();
graph.addItem("first");
for (let i = 1; i < 4; i++) {
graph.addItem("test " + i);
}
console.log(graph.map((text) => text + " str"));
// [ 'test 3 str', 'test 2 str', 'test 1 str', 'first str' ]
// EXAMPLE 2
const graph2 = new Graph2D(true);
graph2.addItem("first", "id1");
for (let i = 1; i < 4; i++) {
graph2.addItem("test " + i, i);
}
graph2.removeItem(1);
console.log(graph2.map((text) => text + " str"));
// [ 'test 3 str', 'test 2 str', 'first str' ]
console.log(graph2.getItem("id1").next.get());
// test 2
graph2.getItem("id1").next.remove();
console.log(graph2.getItem("id1").next.get());
// test 3
// EXAMPLE 3
const graph3 = new Graph2D(true, 100);
for (let i = 0; i < 200; i++) {
graph3.addItem("test " + i, i);
}
console.log(graph3.length());
// 100
console.log(graph3.find((text) => text == "test 55"));
// undefined
console.log(graph3.find((text) => text == "test 155"));
// test 155
new Graph2D(false); // if false graph will get auto increment number id
new Graph2D(true); // if true you will have to put string ID as second argument of addItem
new Graph2D(true, 5000); // graph can store max 5000 items, but automatically remove least used items when you will cross the barrier
graph2d.addItem(data, stringId)
graph2d.getItem(stringId),
graph2d.removeItem(stringId),
graph2d.length(),
graph2d.map(callbackFunction),
graph2d.forEach(callbackFunction),
graph2d.filter(callbackFunction),
graph2d.find(callbackFunction),
graphItem.set(data)
graphItem.get(key), // optional key
graphItem.remove(),
graphItem.next
graphItem.prev
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
Efficient iterable graph data structure
The npm package graph2d receives a total of 8 weekly downloads. As such, graph2d popularity was classified as not popular.
We found that graph2d 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.