
Product
Introducing Custom Pull Request Alert Comment Headers
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Tree nodes for key and key/value pairs in object path hierarchies.
Tree node for keys.
import {KeyNode} from 'key-nodes';
// Start with root key node.
const foo = new KeyNode('foo');
console.log(foo.key); // "foo"
// Add sibling root key node
const bar = foo.addSibling('bar');
console.log(foo.hasSibling('bar')); // true
console.log(bar.hasSibling('foo')); // true
// Add child key node
const baz = foo.addChild('baz');
console.log(foo.hasChild('baz')); // true
// Add child to baz key node
const qux = baz.addChild('qux');
console.log(baz.hasChild('qux')); // true
// Add indexes
const arr0 = qux.addChild(0);
console.log(arr0.keyType); // "index"
console.log(qux.keyType); // "key"
Tree node for key/value pairs.
import {KeyValueNode} from 'key-nodes';
// Start with root key/value node.
const foo = new KeyValueNode('foo');
console.log(foo.key); // "foo"
// Add sibling root key/value node with value.
const bar = foo.addSibling('bar', 11);
console.log(foo.hasSibling('bar')); // true
console.log(bar.hasSibling('foo')); // true
console.log(bar.value); // 11
// Track value history up to 2 changes
bar.keepHistory = 2;
// Change bar value
bar.value = 13;
console.log(bar.value); // 13
// Undo value change
bar.undo();
console.log(bar.value); // 11
// Redo value change
bar.redo();
console.log(bar.value); // 13
// Stop tracking history
bar.keepHistory = false;
bar.value = 17;
console.log(bar.value); // 17
console.log( bar.undo() ); // false
console.log(bar.value); // 17
// Add child key/value node
const baz = foo.addChild('baz');
console.log(foo.hasChild('baz')); // true
// Add indexes with values
const arr0 = baz.addChild(0, 'Value at index 0');
const arr1 = baz.addChild(1, 'Value at index 1');
console.log(arr0.value); // "Value at index 0"
console.log(arr1.value); // "Value at index 1"
console.log(arr1.keyType); // "index"
console.log(baz.keyType); // "key"
Full docs.
FAQs
Tree nodes for key and key/value pairs in object path hierarchies.
We found that key-nodes 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.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.