Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
unist utility to visit direct children of a parent
npm install unist-util-visit-children
Typescript
Module System
Node Version
NPM Version
99.5
Supply Chain
99.4
Quality
77.9
Maintenance
100
Vulnerability
100
License
JavaScript (80.03%)
TypeScript (19.97%)
Total Downloads
81,848,012
Last Day
60,516
Last Week
771,575
Last Month
3,195,661
Last Year
26,367,557
MIT License
8 Stars
90 Commits
1 Forks
9 Watchers
1 Branches
11 Contributors
Updated on Jan 19, 2024
Minified
Minified + Gzipped
Latest Version
3.0.0
Package Id
unist-util-visit-children@3.0.0
Unpacked Size
13.36 kB
Size
4.20 kB
File Count
7
NPM Version
9.7.2
Node Version
20.0.0
Published on
Jul 07, 2023
Cumulative downloads
Total Downloads
Last Day
3.5%
60,516
Compared to previous day
Last Week
-0.7%
771,575
Compared to previous week
Last Month
3.1%
3,195,661
Compared to previous month
Last Year
78.9%
26,367,557
Compared to previous year
1
unist utility to visit direct children of a parent.
This is a tiny utility that you can use to create a reusable function that only visits direct children.
Probably never!
Use unist-util-visit
.
This package is ESM only. In Node.js (version 16+), install with npm:
1npm install unist-util-visit-children
In Deno with esm.sh
:
1import {visitChildren} from 'https://esm.sh/unist-util-visit-children@3'
In browsers with esm.sh
:
1<script type="module"> 2 import {visitChildren} from 'https://esm.sh/unist-util-visit-children@3?bundle' 3</script>
1import u from 'unist-builder' 2import {visitChildren} from 'unist-util-visit-children' 3 4const visit = visitChildren(function (node) { 5 console.log(node) 6}) 7 8const tree = u('tree', [ 9 u('leaf', 'leaf 1'), 10 u('node', [u('leaf', 'leaf 2'), u('leaf', 'leaf 3')]), 11 u('leaf', 'leaf 4'), 12 u('void') 13]) 14 15visit(tree)
Yields:
1{type: 'leaf', value: 'leaf 1'} 2{ 3 type: 'node', 4 children: [ 5 {type: 'leaf', value: 'leaf 2'}, 6 {type: 'leaf', value: 'leaf 3'} 7 ] 8} 9{type: 'leaf', value: 'leaf 4'} 10{type: 'void'}
This package exports the identifier visitChildren
.
There is no default export.
visitChildren(visitor)
Wrap visitor
to be called for each child in the nodes later given to visit
.
visitor
(Visitor
)
— callback called for each child
in parent
later given to visit
Function to call the bound visitor
for each child in parent
(Visit
).
Visitor
Callback called for each child
in parent
later given to visit
(TypeScript type).
child
(Node
)
— child of parentindex
(number
)
— position of child
in parentparent
(Node
)
— parent nodeNothing (undefined
).
Visit
Function to call the bound visitor
for each child in parent
(TypeScript type).
parent
(Node
)
— parent nodeNothing (undefined
).
This package is fully typed with TypeScript.
It exports the additional types Visit
and
Visitor
.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
unist-util-visit-children@^3
, compatible with Node.js 16.
unist-util-visit
— walk the treeunist-util-visit-parents
— walk the tree with a stack of parentsunist-util-filter
— create a new tree with all nodes that pass a testunist-util-map
— create a new tree with all nodes mapped by a given functionunist-util-flatmap
— create a new tree by mapping (to an array) with the given functionunist-util-find-all-after
— find nodes after another nodeunist-util-find-all-before
— find nodes before another nodeunist-util-find-after
— find a node after another nodeunist-util-find-before
— find a node before another nodeunist-util-find-all-between
— find all nodes between two nodesunist-util-remove
— remove nodes from a tree that pass a testunist-util-select
— select nodes with CSS-like selectorsSee contributing.md
in syntax-tree/.github
for
ways to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 1/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-23
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