ekofyi
Liveautomationshipped v1.0.0

Glob Pattern Tester

Test glob patterns (*, **, ?, []) against a list of file paths. See which paths match and which don't, with highlighting on the matched segments. Supports .gitignore-style patterns, negation, and brace expansion. Useful for configuring build tools, linters, and CI pipelines.

globpatternfilesgitignorematching

compiled regex: ^src\/(?:.*\/)?[^/.][^/]*|^[^/.][^/]*[^/]*\.(?:ts|tsx)$

5 of 13 paths match

src/index.ts
src/components/Button.tsx
src/components/Card.test.tsx
src/utils/helpers.js
src/styles/main.css
·tests/integration.spec.ts
·docs/README.md
·docs/api/v1.md
·package.json
·.env
·.gitignore
·node_modules/foo/index.js
·build/output.bundle.js

🔒 Glob converts to JS regex. Supports *, **, ?, [abc], {a,b,c}.