a glob matcher in javascript
A minimal matching utility.
This is the matching library used internally by npm.
It works by converting glob expressions into JavaScript RegExp
objects.
``js
// hybrid module, load with require() or import
import { minimatch } from 'minimatch'
// or:
const { minimatch } = require('minimatch')
minimatch('bar.foo', '*.foo') // true!
minimatch('bar.foo', '*.bar') // false!
minimatch('bar.foo', '*.+(bar|foo)', { debug: true }) // true, and noisy!
`
Supports these glob features:
- Brace Expansion
- Extended glob matching
- "Globstar" ** matching[[:alpha:]]
- Posix character
classes,
like , supporting the full range of Unicode[[:alpha:]]
characters. For example, will match against'é'
, though [a-zA-Z] will not. Collating symbol and set[[=e=]]
matching is not supported, so will _not_ match 'é'[[.ch.]]
and will not match 'ch' in locales where ch is
considered a single character.
See:
- man shman bash
- Patternman 3 fnmatch
Matching
- man 5 gitignore
-
Please only use forward-slashes in glob expressions.
Though windows uses either / or \ as its path separator, only /
characters are used by this glob implementation. You must use
forward-slashes only in glob expressions. Back-slashes in patterns
will always be interpreted as escape characters, not path separators.
Note that \ or / _will_ be interpreted as path separators in paths on/
Windows, and will match against in glob expressions.
So just always use / in patterns.
On Windows, UNC paths like //?/c:/... or//ComputerName/Share/... are handled specially.
- Patterns starting with a double-slash followed by some
non-slash characters will preserve their double-slash. As a
result, a pattern like //* will match //x, but not /x.//?/
- Patterns staring with will _not_ treat?
the as a wildcard character. Instead, it will be treated//?/
as a normal string.
- Patterns starting with will match
file paths starting with , and vice versa,//?/
as if the was not present. This behavior only isnocase:true
present when the drive letters are a case-insensitive match to
one another. The remaining portions of the path/pattern are
compared case sensitively, unless is set.
Note that specifying a UNC path using \ characters as pathwindowsPathsNoEscape: true
separators is always allowed in the file path argument, but only
allowed in the pattern argument when
is set in the options.
Create a minimatch object by instantiating the minimatch.Minimatch class.
`javascript`
var Minimatch = require('minimatch').Minimatch
var mm = new Minimatch(pattern, options)
- pattern The original pattern the minimatch object represents.options
- The options supplied to the constructor.set
- A 2-dimensional array of regexp or string expressions.{a,b/c}/d
Each row in the
array corresponds to a brace-expanded pattern. Each item in the row
corresponds to a single path-part. For example, the pattern
would expand to a set of patterns like:
[ [ a, d ]
, [ b, c, d ] ]
If a portion of the pattern doesn't have any "magic" in it
(that is, it's something like "foo" rather than fo*o?), then it
will be left as a string rather than converted to a regular
expression.
- regexp Created by the makeRe method. A single regular expressionfnmatch(3)
expressing the entire pattern. This is useful in cases where you wish
to use the pattern somewhat like with FNM_PATH enabled.negate
- True if the pattern is negated.comment
- True if the pattern is a comment.empty
- True if the pattern is "".
- makeRe() Generate the regexp member if necessary, and return it.false
Will return if the pattern is invalid.match(fname)
- Return true if the filename matches the pattern, ormatchOne(fileArray, patternArray, partial)
false otherwise.
- Take a /-splitregExpSet
filename, and match it against a single row in the . ThishasMagic()
method is mainly for internal use, but is exposed so that it can be
used by a glob-walker that needs to avoid excessive filesystem calls.
- Returns true if the parsed pattern contains anymagicalBraces
magic characters. Returns false if all comparator parts are
string literals. If the option is set on thea{b,c}d
constructor, then it will consider brace expansions which are
not otherwise magical to be magic. If not set, then a pattern
like will return false, because neither abd noracd
contain any special glob characters.
This does not mean that the pattern string can be used as a
literal filename, as it may contain magic glob characters that
are escaped. For example, the pattern \\ or [] would not''
be considered to have magic, as the matching portion parses to
the literal string and would match a path named '','\\'
not or '[]'. The minimatch.unescape() method may
be used to remove escape characters.
All other methods are internal, and will be called as necessary.
Main export. Tests a path against the pattern using the options.
`javascript`
var isJS = minimatch(file, '*.js', { matchBase: true })
Returns a function that tests its
supplied argument, suitable for use with Array.filter. Example:
`javascript`
var javascripts = fileList.filter(minimatch.filter('*.js', { matchBase: true }))
Escape all magic characters in a glob pattern, so that it will
only ever match literal strings.
If the windowsPathsNoEscape option is used, then characters are[]
escaped by wrapping in , because a magic character wrapped in
a character class can only be satisfied by that exact character.
Slashes (and backslashes in windowsPathsNoEscape mode) cannot
be escaped or unescaped.
Un-escape a glob string that may contain some escaped characters.
If the windowsPathsNoEscape option is used, then square-brace'[]'
escapes are removed, but not backslash escapes. For example, it
will turn the string into , but it will not turn'\\' into '', because \ is a path separator inwindowsPathsNoEscape mode.
When windowsPathsNoEscape is not set, then both brace escapes
and backslash escapes are removed.
Slashes (and backslashes in windowsPathsNoEscape mode) cannot
be escaped or unescaped.
Match against the list of
files, in the style of fnmatch or glob. If nothing is matched, and
options.nonull is set, then return a list containing the pattern itself.
`javascript`
var javascripts = minimatch.match(fileList, '*.js', { matchBase: true })
Make a regular expression object from the pattern.
All options are false by default.
Dump a ton of stuff to stderr.
Do not expand {a,b} and {1..3} brace sets.
Disable ** matching against multiple folder names.
Allow patterns to match filenames starting with a period, even if
the pattern does not explicitly have a period in that spot.
Note that by default, a//b will not** match a/.d/b, unless dot
is set.
Disable "extglob" style patterns like +(a|b).
Perform a case-insensitive match.
When used with {nocase: true}, create regular expressions that{nocase: true}
are case-insensitive, but leave string match portions untouched.
Has no effect when used without .
Useful when some other form of case-insensitive matching is used,
or if the original string representation is useful in some other
way.
When a match is not found by minimatch.match, return a list containing
the pattern itself if this option is set. When not set, an empty list
is returned if there are no matches.
This only affects the results of the Minimatch.hasMagic method.
If the pattern contains brace expansions, such as a{b,c}d, butMinimatch.hasMagic()
no other magic characters, then the methodfalse
will return by default. When this option set, it willtrue
return for brace expansion as well as other magic glob
characters.
If set, then patterns without slashes will be matched
against the basename of the path if it contains slashes. For example,
a?b would match the path /xyz/123/acb, but not /xyz/acb/123.
Suppress the behavior of treating # at the start of a pattern as a
comment.
Suppress the behavior of treating a leading ! character as negation.
Returns from negate expressions the same as if they were not negated.
(Ie, true on a hit, false on a miss.)
Compare a partial path to a pattern. As long as the parts of the path that
are present are not contradicted by the pattern, it will be treated as a
match. This is useful in applications where you're walking through a
folder structure, and don't yet have the full path, but want to ensure that
you do not walk down paths that can never be a match.
For example,
`js`
minimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d
minimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d
minimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a
Use \\ as a path separator _only_, and _never_ as an escape\\
character. If set, all characters are replaced with / inpath.join()
the pattern. Note that this makes it impossible to match
against paths containing literal glob pattern characters, but
allows matching with patterns constructed using andpath.resolve() on Windows platforms, mimicking the (buggy!)
behavior of earlier versions on Windows. Please use with
caution, and be mindful of the caveat about Windows
paths.
For legacy reasons, this is also set if
options.allowWindowsEscape is set to the exact value false.
When a pattern starts with a UNC path or drive letter, and in
nocase:true mode, do not convert the root portions of the
pattern into a case-insensitive regular expression, and instead
leave them as strings.
This is the default when the platform is win32 andnocase:true is set.
By default, multiple / characters (other than the leading ///
in a UNC path, see "UNC Paths" above) are treated as a single.
That is, a pattern like a///b will match the file path a/b.
Set preserveMultipleSlashes: true to suppress this behavior.
A number indicating the level of optimization that should be done
to the pattern prior to parsing and using it for matches.
Globstar parts * are always converted to when noglobstar**
is set, and multiple adjacent parts are converted into a
single (ie, a///b will be treated as a//b, as this
is equivalent in all cases).
- 0 - Make no further changes. In this mode, . and .. area/*/../c
maintained in the pattern, meaning that they must also appear
in the same position in the test path string. Eg, a pattern
like will match the string a/b/../c but not thea/c
string .1
- - (default) Remove cases where a double-dot .. follows a**
pattern portion that is not , ., .., or empty ''. For./a/b/../
example, the pattern is converted to ./a/, and./a/c
so it will match the path string , but not the path./a/b/../c
string . Dots and empty path portions in the2
pattern are preserved.
- (or higher) - Much more aggressive optimizations, suitable..
for use with file-walking cases:
- Remove cases where a double-dot follows a pattern**
portion that is not , ., or empty ''. Remove empty.
and portions of the pattern, where safe to do so (ie,/
anywhere other than the last position, the first position, or
the second position in a pattern starting with , as this
may indicate a UNC path on Windows).
- Convert patterns containing
/**/..//
into the
equivalent/{..,**}//
, where
is a.
a pattern portion other than,..,**, or empty''
.**
- Dedupe patterns where aportion is present in one and{a/**/b,a/b}
omitted in another, and it is not the final path portion, and
they are otherwise equivalent. Sobecomesa//b
, becausematches against an empty path portion.*
- Dedupe patterns where aportion is present in one, and a**
non-dot pattern other than,.,.., or''is in thea/{,x}/b
same position in the other. Sobecomesa//b,*
becausecan match againstx.While these optimizations improve the performance of
file-walking use cases such as glob (ie,
the reason this module exists), there are cases where it will
fail to match a literal string that would have been matched in
optimization level 1 or 0.Specifically, while the Minimatch.match()
method willMinimatch.makeRe()
optimize the file path string in the same ways, resulting in
the same matches, it will fail when tested with the regular
expression provided by, unless the pathminimatch.levelTwoFileOptimize()
string is first processed with
or similar.$3
When set to win32
, this will trigger all windows-specific\
behaviors (special handling for UNC paths, and treatingas
separators in file paths for comparison.)Defaults to the value of process.platform
.Comparisons to other fnmatch/glob implementations
While strict compliance with the existing standards is a
worthwhile goal, some discrepancies exist between minimatch and
other implementations. Some are intentional, and some are
unavoidable.If the pattern starts with a !
character, then it is negated. Set thenonegateflag to suppress this behavior, and treat leading!!(a|B)
characters normally. This is perhaps relevant if you wish to start the
pattern with a negative extglob pattern like. Multiple!
characters at the start of a pattern will negate the pattern multiple
times.If a pattern starts with #
, then it is treated as a comment, and\#
will not match anything. Useto match a literal#at thenocomment
start of a line, or set theflag to suppress this behavior.The double-star character **
is supported by default, unless thenoglobstarflag is set. This is supported in the manner of bsdglob**
and bash 4.1, whereonly has special significance if it is the onlya/**/b
thing in a path part. That is,will matcha/x/y/b, buta/**bwill not.If an escaped pattern has no matches, and the nonull
flag is set,minimatch.match([], "\\a\\?")
then minimatch.match returns the pattern as-provided, rather than
interpreting the character escapes. For example,will return"\\a\\?"rather than"*a?". This is akin to setting thenullgloboption in bash, except
that it does not resolve escaped pattern characters.If brace expansion is not disabled, then it is performed before any
other interpretation of the glob pattern. Thus, a pattern like
+(a|{b),c)}, which would not be valid in bash or zsh, is expanded+(a|b)
first into the set ofand+(a|c), and those patterns are
checked for validity. Since those two are valid, matching proceeds.Negated extglob patterns are handled as closely as possible to
Bash semantics, but there are some cases with negative extglobs
which are exceedingly difficult to express in a JavaScript
regular expression. In particular the negated pattern!( |) will in bash match anything that does
not start with. However,!( ) _will_ match paths starting with, because the empty string can match against
the negated portion. In this library,!( |)
will _not_ match any pattern starting with, due to a
difference in precisely which patterns are considered "greedy" in
Regular Expressions vs bash path expansion. This may be fixable,
but not without incurring some complexity and performance costs,
and the trade-off seems to not be worth pursuing.Note that fnmatch(3)
in libc is an extremely naive string comparison/
matcher, which does not do anything special for slashes. This library is
designed to be used in glob searching and file walkers, and so it does do
special things with. Thus,foo*will not matchfoo/barin thisfnmatch(3)`.
library, even though it would in