directory-search
Advanced tools
Recursively search a directory and return a list of files with matching extension.
Weekly downloads
Readme
You probably want to use node-glob: https://github.com/isaacs/node-glob
If not, here's a smaller, more limited directory search plugin for you.
Recursively search a directory and return a list of matching files. Currently searches only by matching file extension.
var dirSearch = require('directory-search');
// Search 'public' directory for '.css' files.
dirSearch('public', '.css', function(err, results) {
if (err) throw err;
console.log(results);
});
Will result in an array that looks something like this:
[ 'public/styles/app.css',
'public/styles/tables.css',
'public/styles/home/login.css' ]
FAQs
Recursively search a directory and return a list of files with matching extension.
The npm package directory-search receives a total of 494 weekly downloads. As such, directory-search popularity was classified as not popular.
We found that directory-search 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 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.