UrgentcareCLI 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -0
- data/Gemfile.lock +60 -25
- data/Notes +1 -1
- data/README.md +5 -5
- data/Rakefile +2 -0
- data/UrgentCare.gemspec +3 -3
- data/background.jpg +0 -0
- data/lib/UrgentCare.rb +3 -0
- data/lib/UrgentCare/CLI.rb +6 -2
- data/lib/UrgentCare/version.rb +1 -1
- data/lib/Urgentcare/Scraper.rb +65 -23
- data/node_modules/.bin/rimraf +1 -0
- data/node_modules/.package-lock.json +250 -0
- data/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- data/node_modules/balanced-match/LICENSE.md +21 -0
- data/node_modules/balanced-match/README.md +97 -0
- data/node_modules/balanced-match/index.js +62 -0
- data/node_modules/balanced-match/package.json +48 -0
- data/node_modules/brace-expansion/LICENSE +21 -0
- data/node_modules/brace-expansion/README.md +129 -0
- data/node_modules/brace-expansion/index.js +201 -0
- data/node_modules/brace-expansion/package.json +47 -0
- data/node_modules/concat-map/.travis.yml +4 -0
- data/node_modules/concat-map/LICENSE +18 -0
- data/node_modules/concat-map/README.markdown +62 -0
- data/node_modules/concat-map/example/map.js +6 -0
- data/node_modules/concat-map/index.js +13 -0
- data/node_modules/concat-map/package.json +43 -0
- data/node_modules/concat-map/test/map.js +39 -0
- data/node_modules/core-util-is/LICENSE +19 -0
- data/node_modules/core-util-is/README.md +3 -0
- data/node_modules/core-util-is/float.patch +604 -0
- data/node_modules/core-util-is/lib/util.js +107 -0
- data/node_modules/core-util-is/package.json +32 -0
- data/node_modules/core-util-is/test.js +68 -0
- data/node_modules/fs.realpath/LICENSE +43 -0
- data/node_modules/fs.realpath/README.md +33 -0
- data/node_modules/fs.realpath/index.js +66 -0
- data/node_modules/fs.realpath/old.js +303 -0
- data/node_modules/fs.realpath/package.json +26 -0
- data/node_modules/glob/LICENSE +21 -0
- data/node_modules/glob/README.md +375 -0
- data/node_modules/glob/changelog.md +67 -0
- data/node_modules/glob/common.js +234 -0
- data/node_modules/glob/glob.js +788 -0
- data/node_modules/glob/package.json +51 -0
- data/node_modules/glob/sync.js +484 -0
- data/node_modules/immediate/LICENSE.txt +20 -0
- data/node_modules/immediate/README.md +93 -0
- data/node_modules/immediate/dist/immediate.js +75 -0
- data/node_modules/immediate/dist/immediate.min.js +1 -0
- data/node_modules/immediate/lib/browser.js +69 -0
- data/node_modules/immediate/lib/index.js +73 -0
- data/node_modules/immediate/package.json +42 -0
- data/node_modules/inflight/LICENSE +15 -0
- data/node_modules/inflight/README.md +37 -0
- data/node_modules/inflight/inflight.js +54 -0
- data/node_modules/inflight/package.json +29 -0
- data/node_modules/inherits/LICENSE +16 -0
- data/node_modules/inherits/README.md +42 -0
- data/node_modules/inherits/inherits.js +9 -0
- data/node_modules/inherits/inherits_browser.js +27 -0
- data/node_modules/inherits/package.json +29 -0
- data/node_modules/isarray/.npmignore +1 -0
- data/node_modules/isarray/.travis.yml +4 -0
- data/node_modules/isarray/Makefile +6 -0
- data/node_modules/isarray/README.md +60 -0
- data/node_modules/isarray/component.json +19 -0
- data/node_modules/isarray/index.js +5 -0
- data/node_modules/isarray/package.json +45 -0
- data/node_modules/isarray/test.js +20 -0
- data/node_modules/jszip/.codeclimate.yml +16 -0
- data/node_modules/jszip/.editorconfig +8 -0
- data/node_modules/jszip/.jshintignore +1 -0
- data/node_modules/jszip/.jshintrc +21 -0
- data/node_modules/jszip/.travis.yml +17 -0
- data/node_modules/jszip/CHANGES.md +163 -0
- data/node_modules/jszip/LICENSE.markdown +651 -0
- data/node_modules/jszip/README.markdown +35 -0
- data/node_modules/jszip/dist/jszip.js +30 -0
- data/node_modules/jszip/dist/jszip.min.js +13 -0
- data/node_modules/jszip/index.d.ts +270 -0
- data/node_modules/jszip/lib/base64.js +106 -0
- data/node_modules/jszip/lib/compressedObject.js +74 -0
- data/node_modules/jszip/lib/compressions.js +14 -0
- data/node_modules/jszip/lib/crc32.js +77 -0
- data/node_modules/jszip/lib/defaults.js +11 -0
- data/node_modules/jszip/lib/external.js +19 -0
- data/node_modules/jszip/lib/flate.js +85 -0
- data/node_modules/jszip/lib/generate/ZipFileWorker.js +540 -0
- data/node_modules/jszip/lib/generate/index.js +57 -0
- data/node_modules/jszip/lib/index.js +52 -0
- data/node_modules/jszip/lib/license_header.js +11 -0
- data/node_modules/jszip/lib/load.js +81 -0
- data/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- data/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- data/node_modules/jszip/lib/nodejsUtils.js +57 -0
- data/node_modules/jszip/lib/object.js +389 -0
- data/node_modules/jszip/lib/readable-stream-browser.js +9 -0
- data/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- data/node_modules/jszip/lib/reader/DataReader.js +116 -0
- data/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- data/node_modules/jszip/lib/reader/StringReader.js +38 -0
- data/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- data/node_modules/jszip/lib/reader/readerFor.js +28 -0
- data/node_modules/jszip/lib/signature.js +7 -0
- data/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- data/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- data/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- data/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- data/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- data/node_modules/jszip/lib/stream/StreamHelper.js +212 -0
- data/node_modules/jszip/lib/support.js +38 -0
- data/node_modules/jszip/lib/utf8.js +275 -0
- data/node_modules/jszip/lib/utils.js +476 -0
- data/node_modules/jszip/lib/zipEntries.js +262 -0
- data/node_modules/jszip/lib/zipEntry.js +294 -0
- data/node_modules/jszip/lib/zipObject.js +133 -0
- data/node_modules/jszip/package.json +63 -0
- data/node_modules/jszip/vendor/FileSaver.js +247 -0
- data/node_modules/lie/README.md +62 -0
- data/node_modules/lie/dist/lie.js +350 -0
- data/node_modules/lie/dist/lie.min.js +1 -0
- data/node_modules/lie/dist/lie.polyfill.js +358 -0
- data/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- data/node_modules/lie/lib/browser.js +273 -0
- data/node_modules/lie/lib/index.js +298 -0
- data/node_modules/lie/license.md +7 -0
- data/node_modules/lie/lie.d.ts +244 -0
- data/node_modules/lie/package.json +69 -0
- data/node_modules/lie/polyfill.js +4 -0
- data/node_modules/minimatch/LICENSE +15 -0
- data/node_modules/minimatch/README.md +209 -0
- data/node_modules/minimatch/minimatch.js +923 -0
- data/node_modules/minimatch/package.json +30 -0
- data/node_modules/once/LICENSE +15 -0
- data/node_modules/once/README.md +79 -0
- data/node_modules/once/once.js +42 -0
- data/node_modules/once/package.json +33 -0
- data/node_modules/pako/CHANGELOG.md +164 -0
- data/node_modules/pako/LICENSE +21 -0
- data/node_modules/pako/README.md +191 -0
- data/node_modules/pako/dist/pako.js +6818 -0
- data/node_modules/pako/dist/pako.min.js +1 -0
- data/node_modules/pako/dist/pako_deflate.js +3997 -0
- data/node_modules/pako/dist/pako_deflate.min.js +1 -0
- data/node_modules/pako/dist/pako_inflate.js +3300 -0
- data/node_modules/pako/dist/pako_inflate.min.js +1 -0
- data/node_modules/pako/index.js +14 -0
- data/node_modules/pako/lib/deflate.js +400 -0
- data/node_modules/pako/lib/inflate.js +423 -0
- data/node_modules/pako/lib/utils/common.js +105 -0
- data/node_modules/pako/lib/utils/strings.js +187 -0
- data/node_modules/pako/lib/zlib/README +59 -0
- data/node_modules/pako/lib/zlib/adler32.js +51 -0
- data/node_modules/pako/lib/zlib/constants.js +68 -0
- data/node_modules/pako/lib/zlib/crc32.js +59 -0
- data/node_modules/pako/lib/zlib/deflate.js +1874 -0
- data/node_modules/pako/lib/zlib/gzheader.js +58 -0
- data/node_modules/pako/lib/zlib/inffast.js +345 -0
- data/node_modules/pako/lib/zlib/inflate.js +1556 -0
- data/node_modules/pako/lib/zlib/inftrees.js +343 -0
- data/node_modules/pako/lib/zlib/messages.js +32 -0
- data/node_modules/pako/lib/zlib/trees.js +1222 -0
- data/node_modules/pako/lib/zlib/zstream.js +47 -0
- data/node_modules/pako/package.json +44 -0
- data/node_modules/path-is-absolute/index.js +20 -0
- data/node_modules/path-is-absolute/license +21 -0
- data/node_modules/path-is-absolute/package.json +43 -0
- data/node_modules/path-is-absolute/readme.md +59 -0
- data/node_modules/process-nextick-args/index.js +45 -0
- data/node_modules/process-nextick-args/license.md +19 -0
- data/node_modules/process-nextick-args/package.json +25 -0
- data/node_modules/process-nextick-args/readme.md +18 -0
- data/node_modules/readable-stream/.travis.yml +34 -0
- data/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- data/node_modules/readable-stream/GOVERNANCE.md +136 -0
- data/node_modules/readable-stream/LICENSE +47 -0
- data/node_modules/readable-stream/README.md +58 -0
- data/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- data/node_modules/readable-stream/duplex-browser.js +1 -0
- data/node_modules/readable-stream/duplex.js +1 -0
- data/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- data/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- data/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- data/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- data/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- data/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- data/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- data/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- data/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- data/node_modules/readable-stream/package.json +52 -0
- data/node_modules/readable-stream/passthrough.js +1 -0
- data/node_modules/readable-stream/readable-browser.js +7 -0
- data/node_modules/readable-stream/readable.js +19 -0
- data/node_modules/readable-stream/transform.js +1 -0
- data/node_modules/readable-stream/writable-browser.js +1 -0
- data/node_modules/readable-stream/writable.js +8 -0
- data/node_modules/rimraf/LICENSE +15 -0
- data/node_modules/rimraf/README.md +101 -0
- data/node_modules/rimraf/bin.js +50 -0
- data/node_modules/rimraf/package.json +29 -0
- data/node_modules/rimraf/rimraf.js +372 -0
- data/node_modules/safe-buffer/LICENSE +21 -0
- data/node_modules/safe-buffer/README.md +584 -0
- data/node_modules/safe-buffer/index.d.ts +187 -0
- data/node_modules/safe-buffer/index.js +62 -0
- data/node_modules/safe-buffer/package.json +37 -0
- data/node_modules/selenium-webdriver/CHANGES.md +1114 -0
- data/node_modules/selenium-webdriver/LICENSE +202 -0
- data/node_modules/selenium-webdriver/NOTICE +2 -0
- data/node_modules/selenium-webdriver/README.md +229 -0
- data/node_modules/selenium-webdriver/chrome.js +295 -0
- data/node_modules/selenium-webdriver/chromium.js +829 -0
- data/node_modules/selenium-webdriver/devtools/CDPConnection.js +35 -0
- data/node_modules/selenium-webdriver/edge.js +224 -0
- data/node_modules/selenium-webdriver/example/chrome_android.js +45 -0
- data/node_modules/selenium-webdriver/example/chrome_mobile_emulation.js +46 -0
- data/node_modules/selenium-webdriver/example/firefox_channels.js +84 -0
- data/node_modules/selenium-webdriver/example/google_search.js +50 -0
- data/node_modules/selenium-webdriver/example/google_search_test.js +70 -0
- data/node_modules/selenium-webdriver/example/headless.js +63 -0
- data/node_modules/selenium-webdriver/example/logging.js +64 -0
- data/node_modules/selenium-webdriver/firefox.js +789 -0
- data/node_modules/selenium-webdriver/http/index.js +324 -0
- data/node_modules/selenium-webdriver/http/util.js +172 -0
- data/node_modules/selenium-webdriver/ie.js +503 -0
- data/node_modules/selenium-webdriver/index.js +825 -0
- data/node_modules/selenium-webdriver/io/exec.js +162 -0
- data/node_modules/selenium-webdriver/io/index.js +348 -0
- data/node_modules/selenium-webdriver/io/zip.js +223 -0
- data/node_modules/selenium-webdriver/lib/atoms/find-elements.js +123 -0
- data/node_modules/selenium-webdriver/lib/atoms/get-attribute.js +101 -0
- data/node_modules/selenium-webdriver/lib/atoms/is-displayed.js +101 -0
- data/node_modules/selenium-webdriver/lib/atoms/mutation-listener.js +55 -0
- data/node_modules/selenium-webdriver/lib/by.js +415 -0
- data/node_modules/selenium-webdriver/lib/capabilities.js +553 -0
- data/node_modules/selenium-webdriver/lib/command.js +206 -0
- data/node_modules/selenium-webdriver/lib/error.js +605 -0
- data/node_modules/selenium-webdriver/lib/http.js +704 -0
- data/node_modules/selenium-webdriver/lib/input.js +946 -0
- data/node_modules/selenium-webdriver/lib/logging.js +661 -0
- data/node_modules/selenium-webdriver/lib/promise.js +285 -0
- data/node_modules/selenium-webdriver/lib/proxy.js +212 -0
- data/node_modules/selenium-webdriver/lib/session.js +77 -0
- data/node_modules/selenium-webdriver/lib/symbols.js +37 -0
- data/node_modules/selenium-webdriver/lib/until.js +429 -0
- data/node_modules/selenium-webdriver/lib/webdriver.js +2919 -0
- data/node_modules/selenium-webdriver/net/index.js +107 -0
- data/node_modules/selenium-webdriver/net/portprober.js +75 -0
- data/node_modules/selenium-webdriver/opera.js +406 -0
- data/node_modules/selenium-webdriver/package.json +54 -0
- data/node_modules/selenium-webdriver/proxy.js +32 -0
- data/node_modules/selenium-webdriver/remote/index.js +624 -0
- data/node_modules/selenium-webdriver/safari.js +168 -0
- data/node_modules/selenium-webdriver/testing/index.js +504 -0
- data/node_modules/set-immediate-shim/index.js +7 -0
- data/node_modules/set-immediate-shim/package.json +34 -0
- data/node_modules/set-immediate-shim/readme.md +31 -0
- data/node_modules/string_decoder/.travis.yml +50 -0
- data/node_modules/string_decoder/LICENSE +48 -0
- data/node_modules/string_decoder/README.md +47 -0
- data/node_modules/string_decoder/lib/string_decoder.js +296 -0
- data/node_modules/string_decoder/package.json +31 -0
- data/node_modules/tmp/CHANGELOG.md +288 -0
- data/node_modules/tmp/LICENSE +21 -0
- data/node_modules/tmp/README.md +365 -0
- data/node_modules/tmp/lib/tmp.js +780 -0
- data/node_modules/tmp/node_modules/.bin/rimraf +1 -0
- data/node_modules/tmp/node_modules/rimraf/CHANGELOG.md +65 -0
- data/node_modules/tmp/node_modules/rimraf/LICENSE +15 -0
- data/node_modules/tmp/node_modules/rimraf/README.md +101 -0
- data/node_modules/tmp/node_modules/rimraf/bin.js +68 -0
- data/node_modules/tmp/node_modules/rimraf/package.json +32 -0
- data/node_modules/tmp/node_modules/rimraf/rimraf.js +360 -0
- data/node_modules/tmp/package.json +58 -0
- data/node_modules/util-deprecate/History.md +16 -0
- data/node_modules/util-deprecate/LICENSE +24 -0
- data/node_modules/util-deprecate/README.md +53 -0
- data/node_modules/util-deprecate/browser.js +67 -0
- data/node_modules/util-deprecate/node.js +6 -0
- data/node_modules/util-deprecate/package.json +27 -0
- data/node_modules/wrappy/LICENSE +15 -0
- data/node_modules/wrappy/README.md +36 -0
- data/node_modules/wrappy/package.json +29 -0
- data/node_modules/wrappy/wrappy.js +33 -0
- data/node_modules/ws/LICENSE +21 -0
- data/node_modules/ws/README.md +496 -0
- data/node_modules/ws/browser.js +8 -0
- data/node_modules/ws/index.js +10 -0
- data/node_modules/ws/lib/buffer-util.js +129 -0
- data/node_modules/ws/lib/constants.js +10 -0
- data/node_modules/ws/lib/event-target.js +184 -0
- data/node_modules/ws/lib/extension.js +223 -0
- data/node_modules/ws/lib/limiter.js +55 -0
- data/node_modules/ws/lib/permessage-deflate.js +517 -0
- data/node_modules/ws/lib/receiver.js +507 -0
- data/node_modules/ws/lib/sender.js +405 -0
- data/node_modules/ws/lib/stream.js +165 -0
- data/node_modules/ws/lib/validation.js +104 -0
- data/node_modules/ws/lib/websocket-server.js +418 -0
- data/node_modules/ws/lib/websocket.js +942 -0
- data/node_modules/ws/package.json +56 -0
- data/package-lock.json +458 -0
- data/package.json +5 -0
- data/selenium.log +1 -0
- metadata +314 -19
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
"name": "fs.realpath",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
|
5
|
+
"main": "index.js",
|
6
|
+
"dependencies": {},
|
7
|
+
"devDependencies": {},
|
8
|
+
"scripts": {
|
9
|
+
"test": "tap test/*.js --cov"
|
10
|
+
},
|
11
|
+
"repository": {
|
12
|
+
"type": "git",
|
13
|
+
"url": "git+https://github.com/isaacs/fs.realpath.git"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"realpath",
|
17
|
+
"fs",
|
18
|
+
"polyfill"
|
19
|
+
],
|
20
|
+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
21
|
+
"license": "ISC",
|
22
|
+
"files": [
|
23
|
+
"old.js",
|
24
|
+
"index.js"
|
25
|
+
]
|
26
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
The ISC License
|
2
|
+
|
3
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
4
|
+
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
8
|
+
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
16
|
+
|
17
|
+
## Glob Logo
|
18
|
+
|
19
|
+
Glob's logo created by Tanya Brassie <http://tanyabrassie.com/>, licensed
|
20
|
+
under a Creative Commons Attribution-ShareAlike 4.0 International License
|
21
|
+
https://creativecommons.org/licenses/by-sa/4.0/
|
@@ -0,0 +1,375 @@
|
|
1
|
+
# Glob
|
2
|
+
|
3
|
+
Match files using the patterns the shell uses, like stars and stuff.
|
4
|
+
|
5
|
+
[![Build Status](https://travis-ci.org/isaacs/node-glob.svg?branch=master)](https://travis-ci.org/isaacs/node-glob/) [![Build Status](https://ci.appveyor.com/api/projects/status/kd7f3yftf7unxlsx?svg=true)](https://ci.appveyor.com/project/isaacs/node-glob) [![Coverage Status](https://coveralls.io/repos/isaacs/node-glob/badge.svg?branch=master&service=github)](https://coveralls.io/github/isaacs/node-glob?branch=master)
|
6
|
+
|
7
|
+
This is a glob implementation in JavaScript. It uses the `minimatch`
|
8
|
+
library to do its matching.
|
9
|
+
|
10
|
+
![a fun cartoon logo made of glob characters](logo/glob.png)
|
11
|
+
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
Install with npm
|
15
|
+
|
16
|
+
```
|
17
|
+
npm i glob
|
18
|
+
```
|
19
|
+
|
20
|
+
```javascript
|
21
|
+
var glob = require("glob")
|
22
|
+
|
23
|
+
// options is optional
|
24
|
+
glob("**/*.js", options, function (er, files) {
|
25
|
+
// files is an array of filenames.
|
26
|
+
// If the `nonull` option is set, and nothing
|
27
|
+
// was found, then files is ["**/*.js"]
|
28
|
+
// er is an error object or null.
|
29
|
+
})
|
30
|
+
```
|
31
|
+
|
32
|
+
## Glob Primer
|
33
|
+
|
34
|
+
"Globs" are the patterns you type when you do stuff like `ls *.js` on
|
35
|
+
the command line, or put `build/*` in a `.gitignore` file.
|
36
|
+
|
37
|
+
Before parsing the path part patterns, braced sections are expanded
|
38
|
+
into a set. Braced sections start with `{` and end with `}`, with any
|
39
|
+
number of comma-delimited sections within. Braced sections may contain
|
40
|
+
slash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.
|
41
|
+
|
42
|
+
The following characters have special magic meaning when used in a
|
43
|
+
path portion:
|
44
|
+
|
45
|
+
* `*` Matches 0 or more characters in a single path portion
|
46
|
+
* `?` Matches 1 character
|
47
|
+
* `[...]` Matches a range of characters, similar to a RegExp range.
|
48
|
+
If the first character of the range is `!` or `^` then it matches
|
49
|
+
any character not in the range.
|
50
|
+
* `!(pattern|pattern|pattern)` Matches anything that does not match
|
51
|
+
any of the patterns provided.
|
52
|
+
* `?(pattern|pattern|pattern)` Matches zero or one occurrence of the
|
53
|
+
patterns provided.
|
54
|
+
* `+(pattern|pattern|pattern)` Matches one or more occurrences of the
|
55
|
+
patterns provided.
|
56
|
+
* `*(a|b|c)` Matches zero or more occurrences of the patterns provided
|
57
|
+
* `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns
|
58
|
+
provided
|
59
|
+
* `**` If a "globstar" is alone in a path portion, then it matches
|
60
|
+
zero or more directories and subdirectories searching for matches.
|
61
|
+
It does not crawl symlinked directories.
|
62
|
+
|
63
|
+
### Dots
|
64
|
+
|
65
|
+
If a file or directory path portion has a `.` as the first character,
|
66
|
+
then it will not match any glob pattern unless that pattern's
|
67
|
+
corresponding path part also has a `.` as its first character.
|
68
|
+
|
69
|
+
For example, the pattern `a/.*/c` would match the file at `a/.b/c`.
|
70
|
+
However the pattern `a/*/c` would not, because `*` does not start with
|
71
|
+
a dot character.
|
72
|
+
|
73
|
+
You can make glob treat dots as normal characters by setting
|
74
|
+
`dot:true` in the options.
|
75
|
+
|
76
|
+
### Basename Matching
|
77
|
+
|
78
|
+
If you set `matchBase:true` in the options, and the pattern has no
|
79
|
+
slashes in it, then it will seek for any file anywhere in the tree
|
80
|
+
with a matching basename. For example, `*.js` would match
|
81
|
+
`test/simple/basic.js`.
|
82
|
+
|
83
|
+
### Empty Sets
|
84
|
+
|
85
|
+
If no matching files are found, then an empty array is returned. This
|
86
|
+
differs from the shell, where the pattern itself is returned. For
|
87
|
+
example:
|
88
|
+
|
89
|
+
$ echo a*s*d*f
|
90
|
+
a*s*d*f
|
91
|
+
|
92
|
+
To get the bash-style behavior, set the `nonull:true` in the options.
|
93
|
+
|
94
|
+
### See Also:
|
95
|
+
|
96
|
+
* `man sh`
|
97
|
+
* `man bash` (Search for "Pattern Matching")
|
98
|
+
* `man 3 fnmatch`
|
99
|
+
* `man 5 gitignore`
|
100
|
+
* [minimatch documentation](https://github.com/isaacs/minimatch)
|
101
|
+
|
102
|
+
## glob.hasMagic(pattern, [options])
|
103
|
+
|
104
|
+
Returns `true` if there are any special characters in the pattern, and
|
105
|
+
`false` otherwise.
|
106
|
+
|
107
|
+
Note that the options affect the results. If `noext:true` is set in
|
108
|
+
the options object, then `+(a|b)` will not be considered a magic
|
109
|
+
pattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`
|
110
|
+
then that is considered magical, unless `nobrace:true` is set in the
|
111
|
+
options.
|
112
|
+
|
113
|
+
## glob(pattern, [options], cb)
|
114
|
+
|
115
|
+
* `pattern` `{String}` Pattern to be matched
|
116
|
+
* `options` `{Object}`
|
117
|
+
* `cb` `{Function}`
|
118
|
+
* `err` `{Error | null}`
|
119
|
+
* `matches` `{Array<String>}` filenames found matching the pattern
|
120
|
+
|
121
|
+
Perform an asynchronous glob search.
|
122
|
+
|
123
|
+
## glob.sync(pattern, [options])
|
124
|
+
|
125
|
+
* `pattern` `{String}` Pattern to be matched
|
126
|
+
* `options` `{Object}`
|
127
|
+
* return: `{Array<String>}` filenames found matching the pattern
|
128
|
+
|
129
|
+
Perform a synchronous glob search.
|
130
|
+
|
131
|
+
## Class: glob.Glob
|
132
|
+
|
133
|
+
Create a Glob object by instantiating the `glob.Glob` class.
|
134
|
+
|
135
|
+
```javascript
|
136
|
+
var Glob = require("glob").Glob
|
137
|
+
var mg = new Glob(pattern, options, cb)
|
138
|
+
```
|
139
|
+
|
140
|
+
It's an EventEmitter, and starts walking the filesystem to find matches
|
141
|
+
immediately.
|
142
|
+
|
143
|
+
### new glob.Glob(pattern, [options], [cb])
|
144
|
+
|
145
|
+
* `pattern` `{String}` pattern to search for
|
146
|
+
* `options` `{Object}`
|
147
|
+
* `cb` `{Function}` Called when an error occurs, or matches are found
|
148
|
+
* `err` `{Error | null}`
|
149
|
+
* `matches` `{Array<String>}` filenames found matching the pattern
|
150
|
+
|
151
|
+
Note that if the `sync` flag is set in the options, then matches will
|
152
|
+
be immediately available on the `g.found` member.
|
153
|
+
|
154
|
+
### Properties
|
155
|
+
|
156
|
+
* `minimatch` The minimatch object that the glob uses.
|
157
|
+
* `options` The options object passed in.
|
158
|
+
* `aborted` Boolean which is set to true when calling `abort()`. There
|
159
|
+
is no way at this time to continue a glob search after aborting, but
|
160
|
+
you can re-use the statCache to avoid having to duplicate syscalls.
|
161
|
+
* `cache` Convenience object. Each field has the following possible
|
162
|
+
values:
|
163
|
+
* `false` - Path does not exist
|
164
|
+
* `true` - Path exists
|
165
|
+
* `'FILE'` - Path exists, and is not a directory
|
166
|
+
* `'DIR'` - Path exists, and is a directory
|
167
|
+
* `[file, entries, ...]` - Path exists, is a directory, and the
|
168
|
+
array value is the results of `fs.readdir`
|
169
|
+
* `statCache` Cache of `fs.stat` results, to prevent statting the same
|
170
|
+
path multiple times.
|
171
|
+
* `symlinks` A record of which paths are symbolic links, which is
|
172
|
+
relevant in resolving `**` patterns.
|
173
|
+
* `realpathCache` An optional object which is passed to `fs.realpath`
|
174
|
+
to minimize unnecessary syscalls. It is stored on the instantiated
|
175
|
+
Glob object, and may be re-used.
|
176
|
+
|
177
|
+
### Events
|
178
|
+
|
179
|
+
* `end` When the matching is finished, this is emitted with all the
|
180
|
+
matches found. If the `nonull` option is set, and no match was found,
|
181
|
+
then the `matches` list contains the original pattern. The matches
|
182
|
+
are sorted, unless the `nosort` flag is set.
|
183
|
+
* `match` Every time a match is found, this is emitted with the specific
|
184
|
+
thing that matched. It is not deduplicated or resolved to a realpath.
|
185
|
+
* `error` Emitted when an unexpected error is encountered, or whenever
|
186
|
+
any fs error occurs if `options.strict` is set.
|
187
|
+
* `abort` When `abort()` is called, this event is raised.
|
188
|
+
|
189
|
+
### Methods
|
190
|
+
|
191
|
+
* `pause` Temporarily stop the search
|
192
|
+
* `resume` Resume the search
|
193
|
+
* `abort` Stop the search forever
|
194
|
+
|
195
|
+
### Options
|
196
|
+
|
197
|
+
All the options that can be passed to Minimatch can also be passed to
|
198
|
+
Glob to change pattern matching behavior. Also, some have been added,
|
199
|
+
or have glob-specific ramifications.
|
200
|
+
|
201
|
+
All options are false by default, unless otherwise noted.
|
202
|
+
|
203
|
+
All options are added to the Glob object, as well.
|
204
|
+
|
205
|
+
If you are running many `glob` operations, you can pass a Glob object
|
206
|
+
as the `options` argument to a subsequent operation to shortcut some
|
207
|
+
`stat` and `readdir` calls. At the very least, you may pass in shared
|
208
|
+
`symlinks`, `statCache`, `realpathCache`, and `cache` options, so that
|
209
|
+
parallel glob operations will be sped up by sharing information about
|
210
|
+
the filesystem.
|
211
|
+
|
212
|
+
* `cwd` The current working directory in which to search. Defaults
|
213
|
+
to `process.cwd()`.
|
214
|
+
* `root` The place where patterns starting with `/` will be mounted
|
215
|
+
onto. Defaults to `path.resolve(options.cwd, "/")` (`/` on Unix
|
216
|
+
systems, and `C:\` or some such on Windows.)
|
217
|
+
* `dot` Include `.dot` files in normal matches and `globstar` matches.
|
218
|
+
Note that an explicit dot in a portion of the pattern will always
|
219
|
+
match dot files.
|
220
|
+
* `nomount` By default, a pattern starting with a forward-slash will be
|
221
|
+
"mounted" onto the root setting, so that a valid filesystem path is
|
222
|
+
returned. Set this flag to disable that behavior.
|
223
|
+
* `mark` Add a `/` character to directory matches. Note that this
|
224
|
+
requires additional stat calls.
|
225
|
+
* `nosort` Don't sort the results.
|
226
|
+
* `stat` Set to true to stat *all* results. This reduces performance
|
227
|
+
somewhat, and is completely unnecessary, unless `readdir` is presumed
|
228
|
+
to be an untrustworthy indicator of file existence.
|
229
|
+
* `silent` When an unusual error is encountered when attempting to
|
230
|
+
read a directory, a warning will be printed to stderr. Set the
|
231
|
+
`silent` option to true to suppress these warnings.
|
232
|
+
* `strict` When an unusual error is encountered when attempting to
|
233
|
+
read a directory, the process will just continue on in search of
|
234
|
+
other matches. Set the `strict` option to raise an error in these
|
235
|
+
cases.
|
236
|
+
* `cache` See `cache` property above. Pass in a previously generated
|
237
|
+
cache object to save some fs calls.
|
238
|
+
* `statCache` A cache of results of filesystem information, to prevent
|
239
|
+
unnecessary stat calls. While it should not normally be necessary
|
240
|
+
to set this, you may pass the statCache from one glob() call to the
|
241
|
+
options object of another, if you know that the filesystem will not
|
242
|
+
change between calls. (See "Race Conditions" below.)
|
243
|
+
* `symlinks` A cache of known symbolic links. You may pass in a
|
244
|
+
previously generated `symlinks` object to save `lstat` calls when
|
245
|
+
resolving `**` matches.
|
246
|
+
* `sync` DEPRECATED: use `glob.sync(pattern, opts)` instead.
|
247
|
+
* `nounique` In some cases, brace-expanded patterns can result in the
|
248
|
+
same file showing up multiple times in the result set. By default,
|
249
|
+
this implementation prevents duplicates in the result set. Set this
|
250
|
+
flag to disable that behavior.
|
251
|
+
* `nonull` Set to never return an empty set, instead returning a set
|
252
|
+
containing the pattern itself. This is the default in glob(3).
|
253
|
+
* `debug` Set to enable debug logging in minimatch and glob.
|
254
|
+
* `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.
|
255
|
+
* `noglobstar` Do not match `**` against multiple filenames. (Ie,
|
256
|
+
treat it as a normal `*` instead.)
|
257
|
+
* `noext` Do not match `+(a|b)` "extglob" patterns.
|
258
|
+
* `nocase` Perform a case-insensitive match. Note: on
|
259
|
+
case-insensitive filesystems, non-magic patterns will match by
|
260
|
+
default, since `stat` and `readdir` will not raise errors.
|
261
|
+
* `matchBase` Perform a basename-only match if the pattern does not
|
262
|
+
contain any slash characters. That is, `*.js` would be treated as
|
263
|
+
equivalent to `**/*.js`, matching all js files in all directories.
|
264
|
+
* `nodir` Do not match directories, only files. (Note: to match
|
265
|
+
*only* directories, simply put a `/` at the end of the pattern.)
|
266
|
+
* `ignore` Add a pattern or an array of glob patterns to exclude matches.
|
267
|
+
Note: `ignore` patterns are *always* in `dot:true` mode, regardless
|
268
|
+
of any other settings.
|
269
|
+
* `follow` Follow symlinked directories when expanding `**` patterns.
|
270
|
+
Note that this can result in a lot of duplicate references in the
|
271
|
+
presence of cyclic links.
|
272
|
+
* `realpath` Set to true to call `fs.realpath` on all of the results.
|
273
|
+
In the case of a symlink that cannot be resolved, the full absolute
|
274
|
+
path to the matched entry is returned (though it will usually be a
|
275
|
+
broken symlink)
|
276
|
+
* `absolute` Set to true to always receive absolute paths for matched
|
277
|
+
files. Unlike `realpath`, this also affects the values returned in
|
278
|
+
the `match` event.
|
279
|
+
|
280
|
+
## Comparisons to other fnmatch/glob implementations
|
281
|
+
|
282
|
+
While strict compliance with the existing standards is a worthwhile
|
283
|
+
goal, some discrepancies exist between node-glob and other
|
284
|
+
implementations, and are intentional.
|
285
|
+
|
286
|
+
The double-star character `**` is supported by default, unless the
|
287
|
+
`noglobstar` flag is set. This is supported in the manner of bsdglob
|
288
|
+
and bash 4.3, where `**` only has special significance if it is the only
|
289
|
+
thing in a path part. That is, `a/**/b` will match `a/x/y/b`, but
|
290
|
+
`a/**b` will not.
|
291
|
+
|
292
|
+
Note that symlinked directories are not crawled as part of a `**`,
|
293
|
+
though their contents may match against subsequent portions of the
|
294
|
+
pattern. This prevents infinite loops and duplicates and the like.
|
295
|
+
|
296
|
+
If an escaped pattern has no matches, and the `nonull` flag is set,
|
297
|
+
then glob returns the pattern as-provided, rather than
|
298
|
+
interpreting the character escapes. For example,
|
299
|
+
`glob.match([], "\\*a\\?")` will return `"\\*a\\?"` rather than
|
300
|
+
`"*a?"`. This is akin to setting the `nullglob` option in bash, except
|
301
|
+
that it does not resolve escaped pattern characters.
|
302
|
+
|
303
|
+
If brace expansion is not disabled, then it is performed before any
|
304
|
+
other interpretation of the glob pattern. Thus, a pattern like
|
305
|
+
`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded
|
306
|
+
**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are
|
307
|
+
checked for validity. Since those two are valid, matching proceeds.
|
308
|
+
|
309
|
+
### Comments and Negation
|
310
|
+
|
311
|
+
Previously, this module let you mark a pattern as a "comment" if it
|
312
|
+
started with a `#` character, or a "negated" pattern if it started
|
313
|
+
with a `!` character.
|
314
|
+
|
315
|
+
These options were deprecated in version 5, and removed in version 6.
|
316
|
+
|
317
|
+
To specify things that should not match, use the `ignore` option.
|
318
|
+
|
319
|
+
## Windows
|
320
|
+
|
321
|
+
**Please only use forward-slashes in glob expressions.**
|
322
|
+
|
323
|
+
Though windows uses either `/` or `\` as its path separator, only `/`
|
324
|
+
characters are used by this glob implementation. You must use
|
325
|
+
forward-slashes **only** in glob expressions. Back-slashes will always
|
326
|
+
be interpreted as escape characters, not path separators.
|
327
|
+
|
328
|
+
Results from absolute patterns such as `/foo/*` are mounted onto the
|
329
|
+
root setting using `path.join`. On windows, this will by default result
|
330
|
+
in `/foo/*` matching `C:\foo\bar.txt`.
|
331
|
+
|
332
|
+
## Race Conditions
|
333
|
+
|
334
|
+
Glob searching, by its very nature, is susceptible to race conditions,
|
335
|
+
since it relies on directory walking and such.
|
336
|
+
|
337
|
+
As a result, it is possible that a file that exists when glob looks for
|
338
|
+
it may have been deleted or modified by the time it returns the result.
|
339
|
+
|
340
|
+
As part of its internal implementation, this program caches all stat
|
341
|
+
and readdir calls that it makes, in order to cut down on system
|
342
|
+
overhead. However, this also makes it even more susceptible to races,
|
343
|
+
especially if the cache or statCache objects are reused between glob
|
344
|
+
calls.
|
345
|
+
|
346
|
+
Users are thus advised not to use a glob result as a guarantee of
|
347
|
+
filesystem state in the face of rapid changes. For the vast majority
|
348
|
+
of operations, this is never a problem.
|
349
|
+
|
350
|
+
## Glob Logo
|
351
|
+
Glob's logo was created by [Tanya Brassie](http://tanyabrassie.com/). Logo files can be found [here](https://github.com/isaacs/node-glob/tree/master/logo).
|
352
|
+
|
353
|
+
The logo is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
|
354
|
+
|
355
|
+
## Contributing
|
356
|
+
|
357
|
+
Any change to behavior (including bugfixes) must come with a test.
|
358
|
+
|
359
|
+
Patches that fail tests or reduce performance will be rejected.
|
360
|
+
|
361
|
+
```
|
362
|
+
# to run tests
|
363
|
+
npm test
|
364
|
+
|
365
|
+
# to re-generate test fixtures
|
366
|
+
npm run test-regen
|
367
|
+
|
368
|
+
# to benchmark against bash/zsh
|
369
|
+
npm run bench
|
370
|
+
|
371
|
+
# to profile javascript
|
372
|
+
npm run prof
|
373
|
+
```
|
374
|
+
|
375
|
+
![](oh-my-glob.gif)
|
@@ -0,0 +1,67 @@
|
|
1
|
+
## 7.0
|
2
|
+
|
3
|
+
- Raise error if `options.cwd` is specified, and not a directory
|
4
|
+
|
5
|
+
## 6.0
|
6
|
+
|
7
|
+
- Remove comment and negation pattern support
|
8
|
+
- Ignore patterns are always in `dot:true` mode
|
9
|
+
|
10
|
+
## 5.0
|
11
|
+
|
12
|
+
- Deprecate comment and negation patterns
|
13
|
+
- Fix regression in `mark` and `nodir` options from making all cache
|
14
|
+
keys absolute path.
|
15
|
+
- Abort if `fs.readdir` returns an error that's unexpected
|
16
|
+
- Don't emit `match` events for ignored items
|
17
|
+
- Treat ENOTSUP like ENOTDIR in readdir
|
18
|
+
|
19
|
+
## 4.5
|
20
|
+
|
21
|
+
- Add `options.follow` to always follow directory symlinks in globstar
|
22
|
+
- Add `options.realpath` to call `fs.realpath` on all results
|
23
|
+
- Always cache based on absolute path
|
24
|
+
|
25
|
+
## 4.4
|
26
|
+
|
27
|
+
- Add `options.ignore`
|
28
|
+
- Fix handling of broken symlinks
|
29
|
+
|
30
|
+
## 4.3
|
31
|
+
|
32
|
+
- Bump minimatch to 2.x
|
33
|
+
- Pass all tests on Windows
|
34
|
+
|
35
|
+
## 4.2
|
36
|
+
|
37
|
+
- Add `glob.hasMagic` function
|
38
|
+
- Add `options.nodir` flag
|
39
|
+
|
40
|
+
## 4.1
|
41
|
+
|
42
|
+
- Refactor sync and async implementations for performance
|
43
|
+
- Throw if callback provided to sync glob function
|
44
|
+
- Treat symbolic links in globstar results the same as Bash 4.3
|
45
|
+
|
46
|
+
## 4.0
|
47
|
+
|
48
|
+
- Use `^` for dependency versions (bumped major because this breaks
|
49
|
+
older npm versions)
|
50
|
+
- Ensure callbacks are only ever called once
|
51
|
+
- switch to ISC license
|
52
|
+
|
53
|
+
## 3.x
|
54
|
+
|
55
|
+
- Rewrite in JavaScript
|
56
|
+
- Add support for setting root, cwd, and windows support
|
57
|
+
- Cache many fs calls
|
58
|
+
- Add globstar support
|
59
|
+
- emit match events
|
60
|
+
|
61
|
+
## 2.x
|
62
|
+
|
63
|
+
- Use `glob.h` and `fnmatch.h` from NetBSD
|
64
|
+
|
65
|
+
## 1.x
|
66
|
+
|
67
|
+
- `glob.h` static binding.
|