| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Small library to get all paths that contains one or multiple file names.
This module is a composed by a recursive function that will travel down the root directory gathering the ones that match all the query.
var queryPaths = require('../src/index');
const first = queryPaths('/Users/username/dev', 'notfound');
first.on('data', (path) => {
console.log('first: ', path);
});
first.on('end', () => {
console.log('first ended');
});
const second = queryPaths('/Users/username/dev', 'package.json');
second.on('data', (path) => {
console.log('second: ', path);
});
second.on('end', () => {
console.log('second ended');
});
const third = queryPaths('/Users/username/dev', ['.git', 'package.json']);
third.on('data', (path) => {
console.log('third: ', path);
});
third.on('end', () => {
console.log('third ended');
});| Back | FazBrowse Home | New Git URL |