
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@fsdk/tree-utils
Advanced tools
A set of utility functions frequently used while working with tree-like structures
Thare are 2 tree generation utility functions here:
generateTree - Helper function. Provided with options, it returns flat array of tree items. Works on top of the generator.treeGenerator - Generator function. Provided with options, allows to generate random tree, yielding each tree item.Usage Example:
itemCreator - Both generateTree and treeGenerator rely on creator function used to generate particular tree item.
import { defaultItemCreatorFactory, TreeItemMeta } from '@fsdk/tree-utils';
import { nanoid } from 'nanoid'
type FlatTreeItem = {
id: string;
parentId?: string;
name: string;
depth: number;
}
const flatItemCreator = (parent: FlatTreeItem | undefined, meta: TreeItemMeta) => ({
id: nanoid(),
parentId: parent?.id,
name: `Item ${id}`,
depth: meta.level,
});
type NestedTreeItem = {
id: string;
children: NestedTreeItem[];
}
const nestedItemCreator = (parent: NestedTreeItem | undefined, meta: TreeItemMeta) => {
const item: NestedTreeItem = {
id: nanoid(),
children: [],
};
parent?.children.push(item);
return item;
};
// alternatively you can use built-in item creator factory to produce `flatItemCreator` above
const itemCreator = defaultItemCreatorFactory();
generateTree:
import { generateTree } from '@fsdk/tree-utils';
const treeItems = generateTree({
itemCreator, // Required. Provides function used to create tree item object
maxDepth: 5, // Optional. Provides maximum depth of the randomly generated tree. Defults to 10
minSiblings: 2, // Optional. Provides minimum nested items count used by randomzier. Defaults to 3
maxSiblings: 15, // Optional. Provides maximum nested items count used by randomizer. Defaults to 7
maxItems: 1000, // Optional. Limits total items generated in case generation exceeds specified distribution. Defaults to 1000
});
// if you use nested tree object structure it is handy to get `root` as all other items are accessible via children property
const [root] = generateTree({
itemCreator: nestedItemCreator,
});
treeGenerator:
import { treeGenerator } from '@fsdk/tree-utils';
const generator = treeGenerator({
itemCreator, // Required. Provides function used to create tree item object
maxDepth: 10, // Required. Provides maximum depth of the randomly generated tree.
minSiblings: 3, // Required. Provides minimum nested items count used by randomzier.
maxSiblings: 7, // Required. Provides maximum nested items count used by randomizer.
});
// Start generate items by calling `next`
const treeItem = generator.next().value;
FAQs
Utilities for tree-like structures
We found that @fsdk/tree-utils 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.