Home

Awesome

extglob NPM version NPM monthly downloads NPM total downloads Linux Build Status Windows Build Status

Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.

Install

Install with npm:

$ npm install --save extglob

Install with yarn:

$ yarn add extglob

Heads up!: This library only supports extglobs, to handle full glob patterns and other extended globbing features use micromatch instead.

Usage

The main export is a function that takes a string and options, and returns an object with the parsed AST and the compiled .output, which is a regex-compatible string that can be used for matching.

var extglob = require('extglob');
console.log(extglob('!(xyz)*.js'));

Extglob cheatsheet

Extended globbing patterns can be defined as follows (as described by the bash man page):

patternregex equivalentdescription
?(pattern-list)(...|...)?Matches zero or one occurrence of the given pattern(s)
*(pattern-list)(...|...)*Matches zero or more occurrences of the given pattern(s)
+(pattern-list)(...|...)+Matches one or more occurrences of the given pattern(s)
@(pattern-list)(...|...) [^1]Matches one of the given pattern(s)
!(pattern-list)N/AMatches anything except one of the given pattern(s)

API

extglob

Convert the given extglob pattern into a regex-compatible string. Returns an object with the compiled result and the parsed AST.

Params

Example

const extglob = require('extglob');
console.log(extglob('*.!(*a)'));
//=> '(?!\\.)[^/]*?\\.(?!(?!\\.)[^/]*?a\\b).*?'

.match

Takes an array of strings and an extglob pattern and returns a new array that contains only the strings that match the pattern.

Params

Example

const extglob = require('extglob');
console.log(extglob.match(['a.a', 'a.b', 'a.c'], '*.!(*a)'));
//=> ['a.b', 'a.c']

.isMatch

Returns true if the specified string matches the given extglob pattern.

Params

Example

const extglob = require('extglob');

console.log(extglob.isMatch('a.a', '*.!(*a)'));
//=> false
console.log(extglob.isMatch('a.b', '*.!(*a)'));
//=> true

.contains

Returns true if the given string contains the given pattern. Similar to .isMatch but the pattern can match any part of the string.

Params

Example

const extglob = require('extglob');
console.log(extglob.contains('aa/bb/cc', '*b'));
//=> true
console.log(extglob.contains('aa/bb/cc', '*d'));
//=> false

.matcher

Takes an extglob pattern and returns a matcher function. The returned function takes the string to match as its only argument.

Params

Example

const extglob = require('extglob');
const isMatch = extglob.matcher('*.!(*a)');

console.log(isMatch('a.a'));
//=> false
console.log(isMatch('a.b'));
//=> true

.create

Convert the given extglob pattern into a regex-compatible string. Returns an object with the compiled result and the parsed AST.

Params

Example

const extglob = require('extglob');
console.log(extglob.create('*.!(*a)').output);
//=> '(?!\\.)[^/]*?\\.(?!(?!\\.)[^/]*?a\\b).*?'

.capture

Returns an array of matches captured by pattern in string, or null if the pattern did not match.

Params

Example

const extglob = require('extglob');
extglob.capture(pattern, string[, options]);

console.log(extglob.capture('test/*.js', 'test/foo.js'));
//=> ['foo']
console.log(extglob.capture('test/*.js', 'foo/bar.css'));
//=> null

.makeRe

Create a regular expression from the given pattern and options.

Params

Example

const extglob = require('extglob');
const re = extglob.makeRe('*.!(*a)');
console.log(re);
//=> /^[^\/]*?\.(?![^\/]*?a)[^\/]*?$/

Options

Available options are based on the options from Bash (and the option names used in bash).

options.nullglob

Type: boolean

Default: undefined

When enabled, the pattern itself will be returned when no matches are found.

options.nonull

Alias for options.nullglob, included for parity with minimatch.

options.cache

Type: boolean

Default: undefined

Functions are memoized based on the given glob patterns and options. Disable memoization by setting options.cache to false.

options.failglob

Type: boolean

Default: undefined

Throw an error is no matches are found.

Benchmarks

Last run on April 30, 2018

# negation-nested (49 bytes)
  extglob x 1,380,148 ops/sec ±3.35% (62 runs sampled)
  minimatch x 156,800 ops/sec ±4.13% (76 runs sampled)

  fastest is extglob (by 880% avg)

# negation-simple (43 bytes)
  extglob x 1,821,746 ops/sec ±1.61% (76 runs sampled)
  minimatch x 365,618 ops/sec ±1.87% (84 runs sampled)

  fastest is extglob (by 498% avg)

# range-false (57 bytes)
  extglob x 2,038,592 ops/sec ±3.39% (85 runs sampled)
  minimatch x 310,897 ops/sec ±12.62% (87 runs sampled)

  fastest is extglob (by 656% avg)

# range-true (56 bytes)
  extglob x 2,105,081 ops/sec ±0.69% (91 runs sampled)
  minimatch x 332,188 ops/sec ±0.45% (91 runs sampled)

  fastest is extglob (by 634% avg)

# star-simple (46 bytes)
  extglob x 2,154,184 ops/sec ±0.99% (89 runs sampled)
  minimatch x 452,812 ops/sec ±0.51% (88 runs sampled)

  fastest is extglob (by 476% avg)

Differences from Bash

This library has complete parity with Bash 4.3 with only a couple of minor differences.

About

Related projects

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

CommitsContributor
54jonschlinkert
6danez
2isiahmeadows
1doowb
1devongovett
1mjbvz
1shinnn

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

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:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on April 30, 2018.