Giter Club home page Giter Club logo

vfile-find-down's Introduction

vfile-find-down

Build Coverage Downloads Sponsors Backers Chat

vfile utility to find files by searching the file system downwards.

Contents

What is this?

This utility lets you find one or many files downwards.

When should I use this?

You can use this utility if you want to find files in, say, a folder. One example is all markdown files. If you instead want to find files upwards, such as config files, you can use vfile-find-up.

Install

This package is ESM only. In Node.js (version 16), install with npm:

npm install vfile-find-down

Use

import {findDown} from 'vfile-find-down'

console.log(await findDown('.md'))

Yields:

VFile {
  cwd: '/Users/tilde/Projects/oss/vfile-find-down',
  data: {},
  history: [ '/Users/tilde/Projects/oss/vfile-find-down/readme.md' ],
  messages: []
}

API

This package exports the identifiers findDown and findDownAll. There is no default export.

findDown(test[, paths][, callback])

Find the first file or folder downwards.

๐Ÿ‘‰ Note: files are not read (their value is not populated). use to-vfile for that.

Signatures
  • (test[, paths], callback) => undefined
  • (test[, paths]) => Promise<VFile>
Parameters
  • test (Test) โ€” things to search for
  • paths (Array<URL | string> | URL | string, default: process.cwd()) โ€” places to search from
  • callback (Callback, optional) โ€” callback called when done
Returns

Nothing when callback is given (undefined), otherwise a promise that resolves to a file (VFile or undefined).

findDownAll(test[, paths][, callback])

Find files or folders downwards.

๐Ÿ‘‰ Note: files are not read (their value is not populated). use to-vfile for that.

Signatures
  • (test[, paths], callback) => undefined
  • (test[, paths]) => Promise<Array<VFile>>
Parameters
  • test (Test) โ€” things to search for
  • paths (Array<URL | string> | URL | string, default: process.cwd()) โ€” places to search from
  • callback (CallbackAll, optional) โ€” callback called when done
Returns

Nothing when callback is given (undefined), otherwise a promise that resolves to files (Array<VFile>).

Assert

Handle a file (TypeScript type).

Parameters
  • file (VFile) โ€” file to handle
  • stats (Stats) โ€” stats from fs.stat
Returns

How to handle this file (Result, optional).

Callback

Callback called when done finding one file (TypeScript type).

Parameters
  • error (Error or undefined) โ€” error; errors are currently never passed
  • file (VFile or undefined) โ€” file
Returns

Nothing (undefined).

CallbackAll

Callback called when done (TypeScript type).

Parameters
  • error (Error or undefined) โ€” error; errors are currently never passed
  • files (Array<VFile>) โ€” files
Returns

Nothing (undefined).

Result

What to do when collecting a file or folder (TypeScript type).

Fields
  • break (boolean, default: false) โ€” stop searching after this file or folder
  • include (boolean, default: false) โ€” include this file or folder
  • skip (boolean, default: false) โ€” do not search inside this folder

Test

Things to search for (TypeScript type).

For strings, the basename or extname of files must match them and hidden folders and node_modules will not be searched. For arrays, any test in them must match.

Type
type Test = Array<Assert | string> | Assert | string

Types

This package is fully typed with TypeScript. It exports the additional types Assert, Callback, CallbackAll, Result, and Test.

Compatibility

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, vfile-find-down@^7, compatible with Node.js 16.

Contribute

See contributing.md in vfile/.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, organization, or community you agree to abide by its terms.

License

MIT ยฉ Titus Wormer

vfile-find-down's People

Contributors

christianmurphy avatar greenkeeperio-bot avatar wooorm avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

vfile-find-down's Issues

export package's own vfile and other sub-dependencies

Feature request

It would be awesome if packages like vfile-find-down, vfile-find-up, to-vfile and consorts all did expose their own version of the vfile package.

This way, i could reference only one package in my package.json, relying on him to load and expose the others, and not have to maintain possible divergent and incompatible versions of these packages.

And.. and and.. it would allow me to extend VFile.prototype in a way that would work across all of these packages ! Because right now it is not at all possible as i have several instances of the vfile package inside several node_modules/ subfolders !

Usage example

pseudo-code (dream code) not working but you'll see the point..

// import everything from one unique package !
const { all, VFile, toVfile } = require('vfile-find-down')

// let's extend VFile proto with a custom .is() method
// that accepts a string, a Function or an array of all these
VFile.prototype.is = (what) => {
    if (typeof what === 'string') {
      return (this.basename === what) || (this.extname === what)
    } else if (typeof what === 'function') {
      return what(this)
    } else if (Array.isArray(what)) {
      let passed = what.find(unary => vfile.test(unary))
      return passed !== undefined
    }
}

// Now any vfile object created _by any_ of these package can benefit from the .is() custom method
var file1 = new Vfile({ path: '/content/README.md' })
var file2 = toVfile('/path/to/myfile.txt')
var files = await all(() => true, '/content')

file1.is('.md') // => TRUE
file2.is(['.txt', '.md']) // => TRUE
files[0].is(...) // => whatever the result is..

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.