# tinyglobby

> A fast and minimal alternative to globby and fast-glob

Latest version **0.2.17** (published 2026-05-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install tinyglobby
pnpm add tinyglobby
yarn add tinyglobby
bun add tinyglobby
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; high maintenance score; high quality score.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.2.17 |
| Published | 2026-05-30 |
| First published | 2024-07-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=12.0.0 |
| Dependencies | 2 |
| Unpacked size | 38.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 544 |
| Author | Superchupu |
| Maintainers | superchupu |
| Keywords | glob, patterns, tiny, fast |

## Links

- npm: https://www.npmjs.com/package/tinyglobby
- Repository: https://github.com/SuperchupuDev/tinyglobby
- Homepage: https://superchupu.dev/tinyglobby
- Issues: https://github.com/SuperchupuDev/tinyglobby/issues
- Funding: https://github.com/sponsors/SuperchupuDev
- npm.io page: https://npm.io/package/tinyglobby

## Dependencies (2)

- [fdir](https://npm.io/package/fdir.md) ^6.5.0
- [picomatch](https://npm.io/package/picomatch.md) ^4.0.4

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 0.2.17 (latest) — 2026-05-30
- 0.2.16 — 2026-04-07
- 0.2.15 — 2025-09-06
- 0.2.14 — 2025-05-25
- 0.2.13 — 2025-04-19
- 0.2.12 — 2025-02-20
- 0.2.11 — 2025-02-17
- 0.2.10 — 2024-10-25
- 0.2.9 — 2024-10-01
- 0.2.8 — 2024-10-01
- 0.2.7 — 2024-09-30
- 0.2.6 — 2024-09-08
- 0.2.5 — 2024-08-24
- 0.2.4 — 2024-08-24
- 0.2.3 — 2024-08-24
- … 6 more at https://npm.io/package/tinyglobby/versions

## README

# tinyglobby

[![npm version](https://img.shields.io/npm/v/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)
[![weekly downloads](https://img.shields.io/npm/dw/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)

A fast and minimal alternative to globby and fast-glob, meant to behave the same way.

Both globby and fast-glob present some behavior no other globbing lib has,
which makes it hard to manually replace with something smaller and better.

This library uses only two subdependencies, compared to `globby`'s [23](https://npmgraph.js.org/?q=globby@16.2.0)
and `fast-glob`'s [17](https://npmgraph.js.org/?q=fast-glob@3.3.3).

## Usage

```js
import { glob, globSync } from 'tinyglobby';

await glob(['files/*.ts', '!**/*.d.ts'], { cwd: 'src' });
globSync('src/**/*.ts', { ignore: '**/*.d.ts' });
```

## Documentation

Visit https://superchupu.dev/tinyglobby to read the full documentation.

---
_Source: https://npm.io/package/tinyglobby · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
