Projekt

Obecné

Profil

Stáhnout (3.58 KB) Statistiky
| Větev: | Revize:
1
# detect-file [![NPM version](https://img.shields.io/npm/v/detect-file.svg?style=flat)](https://www.npmjs.com/package/detect-file) [![NPM monthly downloads](https://img.shields.io/npm/dm/detect-file.svg?style=flat)](https://npmjs.org/package/detect-file)  [![NPM total downloads](https://img.shields.io/npm/dt/detect-file.svg?style=flat)](https://npmjs.org/package/detect-file) [![Linux Build Status](https://img.shields.io/travis/doowb/detect-file.svg?style=flat&label=Travis)](https://travis-ci.org/doowb/detect-file) [![Windows Build Status](https://img.shields.io/appveyor/ci/doowb/detect-file.svg?style=flat&label=AppVeyor)](https://ci.appveyor.com/project/doowb/detect-file)
2

    
3
> Detects if a file exists and returns the resolved filepath.
4

    
5
## Install
6

    
7
Install with [npm](https://www.npmjs.com/):
8

    
9
```sh
10
$ npm install --save detect-file
11
```
12

    
13
Install with [yarn](https://yarnpkg.com):
14

    
15
```sh
16
$ yarn add detect-file
17
```
18

    
19
## Usage
20

    
21
```js
22
var detect = require('detect-file');
23
```
24

    
25
## API
26

    
27
### [detect](index.js#L33)
28

    
29
Detect the given `filepath` if it exists.
30

    
31
**Params**
32

    
33
* `filepath` **{String}**: filepath to detect.
34
* `options` **{Object}**: Additional options.
35
* `options.nocase` **{Boolean}**: Set this to `true` to force case-insensitive filename checks. This is useful on case sensitive file systems.
36
* `returns` **{String}**: Returns the detected filepath if it exists, otherwise returns `null`.
37

    
38
**Example**
39

    
40
```js
41
var res = detect('package.json');
42
console.log(res);
43
//=> "package.json"
44

    
45
var res = detect('fake-file.json');
46
console.log(res)
47
//=> null
48
```
49

    
50
## Case sensitive file systems
51

    
52
When using the `nocase` option, this library will attempt to detect the filepath with the following methods:
53

    
54
1. Try to read all files in the `filepath` using `fs.readdirSync`. If successful and `filepath` is a directory, return the `filepath`.
55
2. Try to read all files in the `filepath`'s directory using `fs.readdirSync`. If successful, do case insensitive comparasions of the `filepath` to the files in `filepath`'s directory.
56

    
57
## About
58

    
59
### Related projects
60

    
61
[fs-exists-sync](https://www.npmjs.com/package/fs-exists-sync): Drop-in replacement for `fs.existsSync` with zero dependencies. Other libs I found either have crucial differences… [more](https://github.com/jonschlinkert/fs-exists-sync) | [homepage](https://github.com/jonschlinkert/fs-exists-sync "Drop-in replacement for `fs.existsSync` with zero dependencies. Other libs I found either have crucial differences from fs.existsSync, or unnecessary dependencies. See README.md for more info.")
62

    
63
### Contributing
64

    
65
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
66

    
67
### Building docs
68

    
69
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
70

    
71
To generate the readme, run the following command:
72

    
73
```sh
74
$ npm install -g verbose/verb#dev verb-generate-readme && verb
75
```
76

    
77
### Running tests
78

    
79
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
80

    
81
```sh
82
$ npm install && npm test
83
```
84

    
85
### Author
86

    
87
**Brian Woodward**
88

    
89
* [github/doowb](https://github.com/doowb)
90
* [twitter/doowb](https://twitter.com/doowb)
91

    
92
### License
93

    
94
Copyright © 2017, [Brian Woodward](https://github.com/doowb).
95
Released under the [MIT License](LICENSE).
96

    
97
***
98

    
99
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on August 05, 2017._
(2-2/4)