Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qix-/node-find-higher-file
Traverses a path to find a file in a higher directory
https://github.com/qix-/node-find-higher-file
Last synced: 26 days ago
JSON representation
Traverses a path to find a file in a higher directory
- Host: GitHub
- URL: https://github.com/qix-/node-find-higher-file
- Owner: Qix-
- License: mit
- Created: 2015-07-28T00:56:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-28T18:04:26.000Z (over 9 years ago)
- Last Synced: 2024-10-11T18:17:46.792Z (about 1 month ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-find-higher-file [![Travis-CI.org Build Status](https://img.shields.io/travis/Qix-/node-find-higher-file.svg?style=flat-square)](https://travis-ci.org/Qix-/node-find-higher-file) [![Coveralls.io Coverage Rating](https://img.shields.io/coveralls/Qix-/node-find-higher-file.svg?style=flat-square)](https://coveralls.io/r/Qix-/node-find-higher-file)
Traverses upward to find either the next file or the highest file.## Example
```javascript
var findHigherFile = require('find-higher-file');findHigherFile('Mistfile', {find: 'highest'}, function(err, file) {[
if (err) throw err;
console.log(file);
});
```## License
Licensed under the MIT license