Gathering detailed insights and metrics for recursive-iterator
Gathering detailed insights and metrics for recursive-iterator
Gathering detailed insights and metrics for recursive-iterator
Gathering detailed insights and metrics for recursive-iterator
map-obj
Map object keys and values into a new object
fs-iterator
A file system iterator with filter and asyncIterator iterafaces. Supports Node 0.10 and above
object-recursive-iterator
Iterate recursively over the enumerable properties of an object and execute the given callback on the objects's leafs.
get-all-files
A blazing fast recursive directory crawler with lazy sync and async iterator support.
npm install recursive-iterator
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
91 Stars
47 Commits
9 Forks
3 Watchers
1 Branches
1 Contributors
Updated on Jun 08, 2025
Latest Version
3.3.0
Package Id
recursive-iterator@3.3.0
Size
6.92 kB
NPM Version
5.3.0
Node Version
8.2.1
Published on
Aug 05, 2017
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
It iterates through a graph or a tree recursively.
2.x.x
versions1let iterator = new RecursiveIterator( 2 root /*{Object|Array}*/, 3 [bypassMode=0] /*{Number}*/, 4 [ignoreCircular=false] /*{Boolean}*/, 5 [maxDeep=100] /*{Number}*/ 6); 7 8let {value, done} = iterator.next(); 9let {parent, node, key, path, deep} = value; 10 11// parent is parent node 12// node is current node 13// key is key of node 14// path is path to node 15// deep is current deep
1let root = { 2 object: { 3 number: 1 4 }, 5 string: 'foo' 6}; 7 8for(let {node, path} of new RecursiveIterator(root)) { 9 console.log(path.join('.'), node); 10} 11 12// object Object {number: 1} 13// object.number 1 14// string foo
bower install recursive-iterator
You could find this module in bower like recursive iterator.
npm install recursive-iterator
You could find this module in npm like recursive iterator.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
62 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More