Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
vfile-find-down
Advanced tools
Find vfiles by searching the file system downwards.
npm:
npm install vfile-find-down
var findDown = require('vfile-find-down')
findDown.all('.md', console.log)
Yields:
null [ VFile {
data: {},
messages: [],
history: [ '/Users/tilde/projects/oss/vfile-find-down/readme.md' ],
cwd: '/Users/tilde/projects/oss/vfile-find-down' } ]
findDown.all(tests[, paths], callback)
Search for tests
downwards. Invokes callback with either an error
or an array of files passing tests
.
Note: Virtual Files are not read (their contents
is not populated).
tests
Things to search for (string|Function|Array.<tests>
).
If an array is passed in, any test must match a given file for it to be included.
If a string
is passed in, the basename
or extname
of files
must match it for them to be included (and hidden directories and
node_modules
will not be searched).
Otherwise, they must be function
.
paths
Place(s) to searching from (Array.<string>
or string
, default:
process.cwd()
).
callback
Function invoked with all matching files (function cb(err[, files])
).
findDown.one(tests[, paths], callback)
Like findDown.all
, but invokes callback
with the first found
file, or null
.
function test(file, stats)
Check whether a virtual file should be included. Invoked with a vfile and a stats object.
true
or findDown.INCLUDE
— Include the file in the results;findDown.SKIP
— Do not search inside this directory;findDown.BREAK
— Stop searching for files;The different flags can be combined by using the pipe operator:
findDown.INCLUDE | findDown.SKIP
.
See contributing.md
in vfile/vfile
for ways to get started.
This organisation has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
FAQs
vfile utility to find one or more files by searching the file system downwards
We found that vfile-find-down demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.