fast-glob
Last updated
Was this helpful?
Last updated
Was this helpful?
Is a faster alternative.
Fast by using Streams and Promises. Used and .
User-friendly, since it supports multiple and negated patterns (['*', '!*.md']
).
Rational, because it doesn't read excluded directories (!**/node_modules/**
).
Universal, because it supports Synchronous, Promise and Stream API.
Economy, because it provides fs.Stats
for matched path if you wanted.
If you want to thank me, or promote your Issue.
Sorry, but I have work and support for packages requires some time after work. I will be glad of your support and PR's.
Type: string|string[]
This package does not respect the order of patterns. First, all the negative patterns are applied, and only then the positive patterns.
Type: Object
Return a set of tasks based on provided patterns. All tasks satisfy the Task
interface:
Type: string
Default: process.cwd()
The current working directory in which to search.
Type: number|boolean
Default: true
The deep option can be set to true
to traverse the entire directory structure, or it can be set to a number to only traverse that many levels deep.
For example, you have the following tree:
Type: string[]
Default: []
An array of glob patterns to exclude matches.
Type: boolean
Default: false
Allow patterns to match filenames starting with a period (files & directories), even if the pattern does not explicitly have a period in that spot.
Type: boolean
Default: false
Return fs.Stats
with two additional path
and depth
properties instead of a string
.
Type: boolean
Default: true
Return only files.
Type: boolean
Default: false
Return only directories.
Type: boolean
Default: true
Follow symlinked directories when expanding **
patterns.
Type: boolean
Default: true
Prevent duplicate results.
Type: boolean
Default: false
Add a /
character to directory entries.
Type: boolean
Default: false
Return absolute paths for matched entries.
Type: boolean
Default: false
Disable expansion of brace patterns ({a,b}
, {1..3}
).
Type: boolean
Default: true
Type: boolean
Default: false
Disable matching with globstars (**
).
Type: boolean
Default: true
Type: boolean
Default: false
Disable extglob support (patterns like +(a|b)
), so that extglobs are regarded as literal characters.
Type: boolean
Default: true
Type: boolean
Default: false
Examples
File System: test/file.md
, test/File.md
Case-sensitive for test/file.*
pattern (false
): test/file.md
Case-insensitive for test/file.*
pattern (true
): test/file.md
, test/File.md
Type: boolean
Default: true
Type: boolean
Default: false
Allow glob patterns without slashes to match a file path based on its basename. For example, a?b
would match the path /xyz/123/acb
, but not /xyz/acb/123
.
Type: Function
Default: null
Allows you to transform a path or fs.Stats
object before sending to the array.
If you are using TypeScript, you probably want to specify your own type of the returned array.
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.
If you don't want to read the second
directory, you must write the following pattern: !**/second
or !**/second/**
.
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 UNC paths as patterns (due to syntax), but you can use them as cwd
directory.
node-glob
?Not fully, because fast-glob
does not implement all options of node-glob
. See table below.
cwd
root
–
dot
nomount
–
mark
nosort
–
nounique
nobrace
noglobstar
noext
nocase
matchBase
nodir
ignore
follow
realpath
–
absolute
Tech specs:
Processor: E3-1270v6 (8 CPU)
RAM: 32GB
Disk: SSD
This software is released under the terms of the MIT license.
Returns a Promise
with an array of matching .
Returns an array of matching .
Returns a when the data
event will be emitted with .
See section for more detailed information.
The entry which can be a string
if the option is disabled, otherwise fs.Stats
with two additional path
and depth
properties.
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 cwd
option.
Note that you need to use this option if you want to use absolute negative patterns like ${__dirname}/*.md
.
The option without double-negation. This option has a higher priority then nobrace
.
The option without double-negation. This option has a higher priority then noglobstar
.
The option without double-negation. This option has a higher priority then noext
.
Disable a mode for matching files.
The option without double-negation. This option has a higher priority then nocase
.
When you write !**/second/**/*
it means that the directory will be read, but all the entries will not be included in the results.
or
or
or
or
Server:
You can see results for latest release.
– Fast functional replacement for fs.readdir()
.
– User-friendly glob matching.
– «Standard» glob functionality for Node.js
– Bash-powered globbing for node.js.
– A Readable Stream interface over node-glob that used in the .
– Tiny and extremely fast library to match files and folders using glob patterns.
See the for changelogs for each release version.