Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
tree-flatter
Advanced tools
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
$ npm install tree-flatter
import treeFlatter from 'tree-flatter';
const tree = [
{
name: 'item1',
children: [
{
name: 'item2',
children: [
{name: 'item3'}
]
},
{ name: 'item4' }
]
}
];
const options = {
initNode: node => node, // <= default, consider node => _.clone(node) to avoid mutating the tree
};
const list = treeFlatter(tree, 'children', options);ÏÏÏÏÏ
Results in:
[
{id: 1, name: 'item1', children: [2, 4]},
{id: 2, name: 'item2', children: [3], parent: 1},
{id: 3, name: 'item3', parent: 2},
{id: 4, name: 'item4', parent: 1}
]
import treeFlatter from 'tree-flatter';
const tree = [
{
name: 'item1',
objectID: 'aaaaaaaaaaaaaaa',
layers: [
{
name: 'item2',
objectID: 'aaaaaaaaaaaaaaa2',
layers: [
{
name: 'item3',
objectID: 'aaaaaaaaaaaaaaa3',
}
]
},
{
name: 'item4',
objectID: 'aaaaaaaaaaaaaaa4',
}
]
}
];
const list = treeFlatter(tree, , {
idKey: 'objectID',
itemsKey: 'layers',
);
Results in:
[
{ objectID: 'aaaaaaaaaaaaaaa', name: 'item1', layers: ['aaaaaaaaaaaaaaa2', 'aaaaaaaaaaaaaaa4'] },
{ objectID: 'aaaaaaaaaaaaaaa2', name: 'item2', layers: ['aaaaaaaaaaaaaaa3'], parent: 'aaaaaaaaaaaaaaa' },
{ objectID: 'aaaaaaaaaaaaaaa4', name: 'item4', parent: 'aaaaaaaaaaaaaaa' },
{ objectID: 'aaaaaaaaaaaaaaa3', name: 'item3', parent: 'aaaaaaaaaaaaaaa2' },
]
/**
* Flatten tree-object
*
* @param {Array|Object} tree - Object tree
* @param {Object} options - Config options
* @param {Function=} [options.initNode=(node=>node)] - Initialize node
* @param {String=} [options.itemsKey='children'] - Specifies item's children itemsKey
* @param {String=} [options.idKey='id'] - Specifies item's idKey
* @param {Number=} [options.uniqueIdStart=1] - Unique id start
* @param {Function=} [options.generateUniqueId=(() => settings.uniqueIdStart++)] - Unique id generator
*
* @return {Object[]} Flatten collection
*/
$ npm t
MIT
FAQs
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
We found that tree-flatter 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
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.