fast-glob、glob、micromatch、minimatch はいずれも glob パターンに基づくファイルパスのマッチングや探索を目的とした npm パッケージですが、役割が異なります。glob と fast-glob はファイルシステムを実際に走査して一致するパスを返す高レベルなツールです。一方、minimatch と micromatch は文字列(パス)が glob パターンに一致するかを判定する低レベルなマッチングエンジンであり、ファイルシステムへのアクセスは行いません。glob は歴史のある安定した選択肢ですがコールバック中心の API であり、fast-glob は Promise ファーストで高速な現代的な代替です。minimatch はシンプルで軽量なマッチャー、micromatch は拡張 glob 構文や否定パターンをサポートする高性能エンジンとして位置づけられます。
ファイルシステム上でパターンに一致するパスを検索する処理は、ビルドツールや開発サーバー、テストランナーなど多くのフロントエンドツールチェーンで必要不可欠です。fast-glob、glob、micromatch、minimatch はいずれもこの目的に関連しますが、それぞれ役割と設計思想が異なります。実際のコード例を交えながら、各パッケージの特性と使いどころを明らかにします。
まず重要なのは、これらのパッケージが 同じレイヤーで競合しているわけではない ということです。
glob と fast-glob は ファイルシステムを走査して、指定された glob パターンに一致するファイルパスを返す フルスタックなユーティリティです。minimatch と micromatch は 文字列(通常はファイルパス)が glob パターンに一致するかを判定する 純粋なマッチングエンジンです。ファイルシステムへのアクセスは行いません。つまり、glob や fast-glob は内部で minimatch や micromatch のようなマッチングエンジンを利用している可能性があります(実際、glob は minimatch を使っています)。
globNode.js 標準の fs モジュールと minimatch を組み合わせて動作します。歴史が長く、安定していますが、非同期処理はコールバックベースが基本で、Promise 対応は後から追加されました。
// glob: コールバックスタイル(伝統的)
const glob = require('glob');
glob('src/**/*.js', (err, files) => {
if (err) throw err;
console.log(files);
});
// glob: Promise 対応(v8+)
const { glob } = require('glob');
const files = await glob('src/**/*.js');
fast-glob現代的なアプローチで設計されており、Promise ファースト、高速な並列走査、拡張 glob 機能(例:{a,b} や !(pattern))をサポートします。内部では micromatch を使用しています。
// fast-glob: Promise ファースト
const fg = require('fast-glob');
const entries = await fg(['src/**/*.{js,ts}', '!src/**/*.test.*']);
minimatchシンプルで軽量な glob マッチャー。*、?、[...]、{a,b} などの基本的な glob 構文をサポートします。glob パッケージの依存として広く使われています。
// minimatch: 文字列 vs パターン
const minimatch = require('minimatch');
console.log(minimatch('foo/bar.js', 'foo/*.js')); // true
console.log(minimatch('foo/baz.ts', 'foo/*.js')); // false
micromatchminimatch よりも高度な glob 機能(例:拡張 glob、正規表現互換構文)を提供し、パフォーマンスも最適化されています。fast-glob や chokidar など多くのモダンツールで採用されています。
// micromatch: 高度なパターン
const micromatch = require('micromatch');
console.log(micromatch.isMatch('a/b/c.js', 'a/**/c.js')); // true
console.log(micromatch.isMatch('test/foo.spec.js', '!test/*.spec.js')); // false(否定パターン)
拡張 glob(extglob)とは、!(pattern)(否定)、+(pattern)(1回以上)、*(pattern)(0回以上)などの Bash 由来の高度なパターンのことです。
minimatch: {a,b} はサポート。!(...) などの extglob は オプションで有効化可能({ nobrace: false, nonegate: false, noext: false } など)。micromatch: extglob を デフォルトでフルサポート。さらに .gitignore 互換の否定パターン(! 行頭)もネイティブ対応。glob: 内部で minimatch を使うため、extglob は明示的にオプションを渡さないと無効。fast-glob: 内部で micromatch を使うため、extglob は 常に有効。// extglob の例: foo ディレクトリ以下で test 以外の .js ファイル
const pattern = 'foo/!(test)/*.js';
// minimatch(オプション必須)
minimatch('foo/app/main.js', pattern, { noext: false }); // true
// micromatch(デフォルトでOK)
micromatch.isMatch('foo/app/main.js', pattern); // true
// glob(オプション必須)
glob(pattern, { noext: false }, callback);
// fast-glob(常にOK)
await fg([pattern]);
glob: 同期・非同期(コールバック)・Promise の3種類の API を提供。大規模なディレクトリでは遅くなる傾向あり。fast-glob: Promise ファースト。並列走査とストリーム処理により、大規模プロジェクトでも高速。concurrent オプションで同時実行数を調整可能。minimatch / micromatch: 同期関数のみ。ファイルシステムに触らないため、単一のマッチ判定は極めて高速。// fast-glob: 大規模ディレクトリ向けの最適化
const entries = await fg(['**/*.js'], {
cwd: './large-project',
onlyFiles: true,
concurrent: 4 // 同時実行数を制限
});
fast-globglobminimatchmicromatch.gitignore のような否定パターンを含むリストを処理するには、micromatch が最適です。
const micromatch = require('micromatch');
const patterns = [
'node_modules/**',
'dist/**',
'!dist/public/**' // public 以下は除外しない
];
const paths = [
'node_modules/react/index.js',
'dist/app.js',
'dist/public/index.html'
];
const filtered = micromatch(paths, patterns);
// 結果: ['dist/public/index.html']
一方、minimatch では否定パターンを直接扱えず、自分でフィルタリングロジックを実装する必要があります。
| 目的 | 推奨パッケージ | 理由 |
|---|---|---|
| ファイル探索(新規プロジェクト) | fast-glob | Promise ファースト、高速、拡張 glob 対応 |
| ファイル探索(レガシー互換) | glob | 広く使われており安定、ただし API が古い |
| シンプルな文字列マッチ | minimatch | 軽量、基本的な glob に対応 |
| 高度なパターンマッチング | micromatch | extglob、否定パターン、高性能 |
fast-glob を試してください。ほとんどの現代的なフロントエンドツールチェーンで十分な機能と速度を提供します。glob ベースのコードを置き換える必要がない限り、新規プロジェクトで glob を選ぶ理由は少ないです。micromatch を使うことで、より柔軟で強力なパターン対応が可能になります。minimatch は、最小限の依存関係で済ませたい あるいは 非常にシンプルなマッチングしか不要 な特殊なケース以外では、micromatch の方が実用的です。これらのライブラリは「どちらが優れているか」ではなく、「どの層で何を解決するか」が異なるため、自分のタスクに合ったものを選ぶことが重要です。
fast-glob は、新しいプロジェクトでファイルシステムを高速に探索したい場合に最適です。Promise ファーストの API、並列走査、拡張 glob 構文(例: !(pattern))のネイティブサポートがあり、大規模なディレクトリでも効率的に動作します。ビルドツールや開発サーバーなど、現代的なフロントエンドワークフローにぴったりです。
glob は、既存の Node.js ツールやレガシーコードとの互換性が重要な場合に適しています。長年の実績があり安定していますが、API はコールバックベースが基本で、Promise 対応は後付けです。新しいプロジェクトでは fast-glob を検討すべきですが、特定の依存関係や制約がある場合は依然として有効な選択肢です。
micromatch は、高度な glob 機能(拡張 glob、否定パターン、.gitignore 互換構文)が必要な場合や、他のモダンツール(例: fast-glob、chokidar)と統合したい場合に最適です。純粋な文字列マッチングエンジンとして、高性能かつ柔軟なパターン対応を提供します。ファイルシステム操作は含まれません。
minimatch は、非常にシンプルな glob マッチングだけで十分で、依存関係を最小限に抑えたい場合に適しています。基本的なパターン(*、?、{a,b})をサポートし、軽量です。ただし、拡張 glob や否定パターンにはオプション指定が必要で、高度な要件がある場合は micromatch の方が実用的です。
This package provides methods for traversing the file system and returning pathnames that matched a defined set of a specified pattern according to the rules used by the Unix Bash shell with some simplifications, meanwhile results are returned in arbitrary order. Quick, simple, effective.
This package works in two modes, depending on the environment in which it is used.
stats option is enabled.stats option is disabled.The modern mode is faster. Learn more about the internal mechanism.
:warning: Always use forward-slashes in glob expressions (patterns and
ignoreoption). Use backslashes for escaping characters.
There is more than one form of syntax: basic and advanced. Below is a brief overview of the supported features. Also pay attention to our FAQ.
:book: This package uses
micromatchas a library for pattern matching.
*) — matches everything except slashes (path separators), hidden files (names starting with .).**) — matches zero or more directories.?) – matches any single character except slashes (path separators).[seq]) — matches any character in sequence.:book: A few additional words about the basic matching behavior.
Some examples:
src/**/*.js — matches all files in the src directory (any level of nesting) that have the .js extension.src/*.?? — matches all files in the src directory (only first level of nesting) that have a two-character extension.file-[01].js — matches files: file-0.js, file-1.js.\\) — matching special characters ($^*+?()[]) as literals.[[:digit:]]).?(pattern-list)).{}).[1-5]).(a|b)).:book: A few additional words about the advanced matching behavior.
Some examples:
src/**/*.{css,scss} — matches all files in the src directory (any level of nesting) that have the .css or .scss extension.file-[[:digit:]].js — matches files: file-0.js, file-1.js, …, file-9.js.file-{1..3}.js — matches files: file-1.js, file-2.js, file-3.js.file-(1|2) — matches files: file-1.js, file-2.js.npm install fast-glob
fg(patterns, [options])
fg.async(patterns, [options])
fg.glob(patterns, [options])
Returns a Promise with an array of matching entries.
const fg = require('fast-glob');
const entries = await fg(['.editorconfig', '**/index.js'], { dot: true });
// ['.editorconfig', 'services/index.js']
fg.sync(patterns, [options])
fg.globSync(patterns, [options])
Returns an array of matching entries.
const fg = require('fast-glob');
const entries = fg.sync(['.editorconfig', '**/index.js'], { dot: true });
// ['.editorconfig', 'services/index.js']
fg.stream(patterns, [options])
fg.globStream(patterns, [options])
Returns a ReadableStream when the data event will be emitted with matching entry.
const fg = require('fast-glob');
const stream = fg.stream(['.editorconfig', '**/index.js'], { dot: true });
for await (const entry of stream) {
// .editorconfig
// services/index.js
}
truestring | string[]Any correct pattern(s).
:1234: Pattern syntax
:warning: This package does not respect the order of patterns. First, all the negative patterns are applied, and only then the positive patterns. If you want to get a certain order of records, use sorting or split calls.
falseOptionsSee Options section.
generateTasks(patterns, [options])Returns the internal representation of patterns (Task is a combining patterns by base directory).
fg.generateTasks('*');
[{
base: '.', // Parent directory for all patterns inside this task
dynamic: true, // Dynamic or static patterns are in this task
patterns: ['*'],
positive: ['*'],
negative: []
}]
truestring | string[]Any correct pattern(s).
falseOptionsSee Options section.
isDynamicPattern(pattern, [options])Returns true if the passed pattern is a dynamic pattern.
fg.isDynamicPattern('*'); // true
fg.isDynamicPattern('abc'); // false
truestringAny correct pattern.
falseOptionsSee Options section.
escapePath(path)Returns the path with escaped special characters depending on the platform.
*?|(){}[];! at the beginning of line;@+! before the opening parenthesis;\\ before non-special characters;(){}[]! at the beginning of line;@+! before the opening parenthesis;*?| cannot be used in the path (windows_naming_conventions), so they will not be escaped;fg.escapePath('!abc');
// \\!abc
fg.escapePath('[OpenSource] mrmlnc – fast-glob (Deluxe Edition) 2014') + '/*.flac'
// \\[OpenSource\\] mrmlnc – fast-glob \\(Deluxe Edition\\) 2014/*.flac
fg.posix.escapePath('C:\\Program Files (x86)\\**\\*');
// C:\\\\Program Files \\(x86\\)\\*\\*\\*
fg.win32.escapePath('C:\\Program Files (x86)\\**\\*');
// Windows: C:\\Program Files \\(x86\\)\\**\\*
convertPathToPattern(path)Converts a path to a pattern depending on the platform, including special character escaping.
fg.posix.escapePath method.fg.win32.escapePath method, additionally converting backslashes to forward slashes in cases where they are not escape characters (!()+@{}[]).fg.convertPathToPattern('[OpenSource] mrmlnc – fast-glob (Deluxe Edition) 2014') + '/*.flac';
// \\[OpenSource\\] mrmlnc – fast-glob \\(Deluxe Edition\\) 2014/*.flac
fg.convertPathToPattern('C:/Program Files (x86)/**/*');
// Posix: C:/Program Files \\(x86\\)/\\*\\*/\\*
// Windows: C:/Program Files \\(x86\\)/**/*
fg.convertPathToPattern('C:\\Program Files (x86)\\**\\*');
// Posix: C:\\\\Program Files \\(x86\\)\\*\\*\\*
// Windows: C:/Program Files \\(x86\\)/**/*
fg.posix.convertPathToPattern('\\\\?\\c:\\Program Files (x86)') + '/**/*';
// Posix: \\\\\\?\\\\c:\\\\Program Files \\(x86\\)/**/* (broken pattern)
fg.win32.convertPathToPattern('\\\\?\\c:\\Program Files (x86)') + '/**/*';
// Windows: //?/c:/Program Files \\(x86\\)/**/*
numberos.cpus().lengthSpecifies the maximum number of concurrent requests from a reader to read directories.
:book: The higher the number, the higher the performance and load on the file system. If you want to read in quiet mode, set the value to a comfortable number or
1.
In Node, there are two types of threads: Event Loop (code) and a Thread Pool (fs, dns, …). The thread pool size controlled by the UV_THREADPOOL_SIZE environment variable. Its default size is 4 (documentation). The pool is one for all tasks within a single Node process.
Any code can make 4 real concurrent accesses to the file system. The rest of the FS requests will wait in the queue.
:book: Each new instance of FG in the same Node process will use the same Thread pool.
But this package also has the concurrency option. This option allows you to control the number of concurrent accesses to the FS at the package level. By default, this package has a value equal to the number of cores available for the current Node process. This allows you to set a value smaller than the pool size (concurrency: 1) or, conversely, to prepare tasks for the pool queue more quickly (concurrency: Number.POSITIVE_INFINITY).
So, in fact, this package can only make 4 concurrent requests to the FS. You can increase this value by using an environment variable (UV_THREADPOOL_SIZE), but in practice this does not give a multiple advantage.
stringprocess.cwd()The current working directory in which to search.
numberInfinitySpecifies the maximum depth of a read directory relative to the start directory.
For example, you have the following tree:
dir/
└── one/ // 1
└── two/ // 2
└── file.js // 3
// With base directory
fg.sync('dir/**', { onlyFiles: false, deep: 1 }); // ['dir/one']
fg.sync('dir/**', { onlyFiles: false, deep: 2 }); // ['dir/one', 'dir/one/two']
// With cwd option
fg.sync('**', { onlyFiles: false, cwd: 'dir', deep: 1 }); // ['one']
fg.sync('**', { onlyFiles: false, cwd: 'dir', deep: 2 }); // ['one', 'one/two']
:book: If you specify a pattern with some base directory, this directory will not participate in the calculation of the depth of the found directories. Think of it as a
cwdoption.
booleantrueIndicates whether to traverse descendants of symbolic link directories when expanding ** patterns.
:book: Note that this option does not affect the base directory of the pattern. For example, if
./ais a symlink to directory./band you specified['./a**', './b/**']patterns, then directory./awill still be read.
:book: If the
statsoption is specified, the information about the symbolic link (fs.lstat) will be replaced with information about the entry (fs.stat) behind it.
FileSystemAdapterfs.*Custom implementation of methods for working with the file system. Supports objects with enumerable properties only.
export interface FileSystemAdapter {
lstat?: typeof fs.lstat;
stat?: typeof fs.stat;
lstatSync?: typeof fs.lstatSync;
statSync?: typeof fs.statSync;
readdir?: typeof fs.readdir;
readdirSync?: typeof fs.readdirSync;
}
string[][]An array of glob patterns to exclude matches. This is an alternative way to use negative patterns.
dir/
├── package-lock.json
└── package.json
fg.sync(['*.json', '!package-lock.json']); // ['package.json']
fg.sync('*.json', { ignore: ['package-lock.json'] }); // ['package.json']
booleanfalseBy default this package suppress only ENOENT errors. Set to true to suppress any error.
:book: Can be useful when the directory has entries with a special level of access.
booleanfalseThrow an error when symbolic link is broken if true or safely return lstat call if false.
:book: This option has no effect on errors when reading the symbolic link directory.
booleanfalseReturn the absolute path for entries.
fg.sync('*.js', { absolute: false }); // ['index.js']
fg.sync('*.js', { absolute: true }); // ['/home/user/index.js']
:book: This option is required if you want to use negative patterns with absolute path, for example,
!${__dirname}/*.js.
booleanfalseMark the directory path with the final slash.
fg.sync('*', { onlyFiles: false, markDirectories: false }); // ['index.js', 'controllers']
fg.sync('*', { onlyFiles: false, markDirectories: true }); // ['index.js', 'controllers/']
booleanfalseReturns objects (instead of strings) describing entries.
fg.sync('*', { objectMode: false }); // ['src/index.js']
fg.sync('*', { objectMode: true }); // [{ name: 'index.js', path: 'src/index.js', dirent: <fs.Dirent> }]
The object has the following fields:
string) — the last part of the path (basename)string) — full path relative to the pattern base directoryfs.Dirent) — instance of fs.Dirent:book: An object is an internal representation of entry, so getting it does not affect performance.
booleanfalseReturn only directories.
fg.sync('*', { onlyDirectories: false }); // ['index.js', 'src']
fg.sync('*', { onlyDirectories: true }); // ['src']
:book: If
true, theonlyFilesoption is automaticallyfalse.
booleantrueReturn only files.
fg.sync('*', { onlyFiles: false }); // ['index.js', 'src']
fg.sync('*', { onlyFiles: true }); // ['index.js']
booleanfalseEnables an object mode with an additional field:
fs.Stats) — instance of fs.Statsfg.sync('*', { stats: false }); // ['src/index.js']
fg.sync('*', { stats: true }); // [{ name: 'index.js', path: 'src/index.js', dirent: <fs.Dirent>, stats: <fs.Stats> }]
:book: Returns
fs.statinstead offs.lstatfor symbolic links when thefollowSymbolicLinksoption is specified.:warning: Unlike object mode this mode requires additional calls to the file system. On average, this mode is slower at least twice. See old and modern mode for more details.
booleantrueEnsures that the returned entries are unique.
fg.sync(['*.json', 'package.json'], { unique: false }); // ['package.json', 'package.json']
fg.sync(['*.json', 'package.json'], { unique: true }); // ['package.json']
If true and similar entries are found, the result is the first found.
booleantrueEnables Bash-like brace expansion.
:1234: Syntax description or more detailed description.
dir/
├── abd
├── acd
└── a{b,c}d
fg.sync('a{b,c}d', { braceExpansion: false }); // ['a{b,c}d']
fg.sync('a{b,c}d', { braceExpansion: true }); // ['abd', 'acd']
booleantrueEnables a case-sensitive mode for matching files.
dir/
├── file.txt
└── File.txt
fg.sync('file.txt', { caseSensitiveMatch: false }); // ['file.txt', 'File.txt']
fg.sync('file.txt', { caseSensitiveMatch: true }); // ['file.txt']
booleanfalseAllow patterns to match entries that begin with a period (.).
:book: Note that an explicit dot in a portion of the pattern will always match dot files.
dir/
├── .editorconfig
└── package.json
fg.sync('*', { dot: false }); // ['package.json']
fg.sync('*', { dot: true }); // ['.editorconfig', 'package.json']
booleantrueEnables Bash-like extglob functionality.
:1234: Syntax description.
dir/
├── README.md
└── package.json
fg.sync('*.+(json|md)', { extglob: false }); // []
fg.sync('*.+(json|md)', { extglob: true }); // ['README.md', 'package.json']
booleantrueEnables recursively repeats a pattern containing **. If false, ** behaves exactly like *.
dir/
└── a
└── b
fg.sync('**', { onlyFiles: false, globstar: false }); // ['a']
fg.sync('**', { onlyFiles: false, globstar: true }); // ['a', 'a/b']
booleanfalseIf set to true, then patterns without slashes will be matched against the basename of the path if it contains slashes.
dir/
└── one/
└── file.md
fg.sync('*.md', { baseNameMatch: false }); // []
fg.sync('*.md', { baseNameMatch: true }); // ['one/file.md']
All patterns can be divided into two types:
file.js pattern is a static pattern because we can just verify that it exists on the file system.* pattern is a dynamic pattern because we cannot use this pattern directly.A pattern is considered dynamic if it contains the following characters (… — any characters or their absence) or options:
caseSensitiveMatch option is disabled\\ (the escape character)*, ?, ! (at the beginning of line)[…](…|…)@(…), !(…), *(…), ?(…), +(…) (respects the extglob option){…,…}, {…..…} (respects the braceExpansion option)Always use forward-slashes in glob expressions (patterns and ignore option). Use backslashes for escaping characters. With the cwd option use a convenient format.
Bad
[
'directory\\*',
path.join(process.cwd(), '**')
]
Good
[
'directory/*',
fg.convertPathToPattern(process.cwd()) + '/**'
]
:book: Use the
.convertPathToPatternpackage to convert Windows-style path to a Unix-style path.
Read more about matching with backslashes.
dir/
└── (special-*file).txt
fg.sync(['(special-*file).txt']) // []
Refers to Bash. You need to escape special characters:
fg.sync(['\\(special-*file\\).txt']) // ['(special-*file).txt']
Read more about matching special characters as literals. Or use the .escapePath.
You can use a negative pattern like this: !**/node_modules or !**/node_modules/**. Also you can use ignore option. Just look at the example below.
first/
├── file.md
└── second/
└── file.txt
If you don't want to read the second directory, you must write the following pattern: !**/second or !**/second/**.
fg.sync(['**/*.md', '!**/second']); // ['first/file.md']
fg.sync(['**/*.md'], { ignore: ['**/second/**'] }); // ['first/file.md']
:warning: When you write
!**/second/**/*it means that the directory will be read, but all the entries will not be included in the results.
You have to understand that if you write the pattern to exclude directories, then the directory will not be read under any circumstances.
You cannot use Uniform Naming Convention (UNC) paths as patterns (due to syntax) directly, but you can use them as cwd directory or use the fg.convertPathToPattern method.
// cwd
fg.sync('*', { cwd: '\\\\?\\C:\\Python27' /* or //?/C:/Python27 */ });
fg.sync('Python27/*', { cwd: '\\\\?\\C:\\' /* or //?/C:/ */ });
// .convertPathToPattern
fg.sync(fg.convertPathToPattern('\\\\?\\c:\\Python27') + '/*');
node-glob?| node-glob | fast-glob |
|---|---|
cwd | cwd |
root | – |
dot | dot |
nomount | – |
mark | markDirectories |
nosort | – |
nounique | unique |
nobrace | braceExpansion |
noglobstar | globstar |
noext | extglob |
nocase | caseSensitiveMatch |
matchBase | baseNameMatch |
nodir | onlyFiles |
ignore | ignore |
follow | followSymbolicLinks |
realpath | – |
absolute | absolute |
You can see results here for every commit into the main branch.
See the Releases section of our GitHub project for changelog for each release version.
This software is released under the terms of the MIT license.