# simple-find-file-recursively-up

> returns the path at which a provided pattern exists, checking the current directory and any parent folders recursively up

Latest version **1.0.1-5** (published 2023-05-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-find-file-recursively-up
pnpm add simple-find-file-recursively-up
yarn add simple-find-file-recursively-up
bun add simple-find-file-recursively-up
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1-5 |
| Published | 2023-05-06 |
| First published | 2022-10-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | metaory |
| Maintainers | metaory |
| Keywords | simple, find, file, recursively, up |

## Links

- npm: https://www.npmjs.com/package/simple-find-file-recursively-up
- Repository: https://github.com/metaory/simple-find-file-recursively-up
- Homepage: https://github.com/metaory/simple-find-file-recursively-up#readme
- Issues: https://github.com/metaory/simple-find-file-recursively-up/issues
- npm.io page: https://npm.io/package/simple-find-file-recursively-up

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 1.0.1-5 (latest) — 2023-05-06
- 1.0.1-4 — 2022-10-05
- 1.0.1-1 — 2022-10-05
- 1.0.0 — 2022-10-05

## README

simple find file recursively up
===============================

Installation
============
    npm i simple-find-file-recursively-up


Usage
=====

```javascript
const findFileRecursivelyUp = require('simple-find-file-recursively-up')

// Pass filename
const found = findFileRecursivelyUp('config.yml')
// /home/meta/dev/project-x/.circleci/config.yml

// pass file path suffix
const found = findFileRecursivelyUp('.mxflow/config.yml')
// /home/meta/.mxflow/config.yml

// pass non-existing path
const found = findFileRecursivelyUp('file-that-dont-exist.csv')
// null
```

---
_Source: https://npm.io/package/simple-find-file-recursively-up · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
