readdir-cluster
Advanced tools
Weekly downloads
Changelog
v3.17.0 2021 July 30
Readme
Use multiple CPU cores via clusters for the fastest way to read nested directories and their stats
const readdir = require('readdir-cluster')
const paths = []
function iterator(fullPath, relativePath, statObject) {
if (statObject.directory && relativePath[0] === '.') {
return false // do not delve deeper into hidden paths
}
paths.push(fullPath)
}
readdir(__dirname, iterator, function (err) {
if (err) throw err
console.log('completed successfully:', paths)
})
npm install --save readdir-cluster
import * as pkg from ('readdir-cluster')
const pkg = require('readdir-cluster')
This package is published with the following editions:
readdir-cluster
aliases readdir-cluster/source/index.js
readdir-cluster/source/index.js
is ESNext source code for Node.js 10 || 12 || 14 || 16 with Require for modulesDiscover the release history by heading on over to the HISTORY.md
file.
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
and licensed under:
FAQs
Use multiple CPU cores via clusters for the fastest way to read nested directories and their stats
The npm package readdir-cluster receives a total of 877 weekly downloads. As such, readdir-cluster popularity was classified as not popular.
We found that readdir-cluster demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.