Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markthree/go-globby
fast glob. but use go, so high-speed
https://github.com/markthree/go-globby
fast glob globby go nodejs
Last synced: 16 days ago
JSON representation
fast glob. but use go, so high-speed
- Host: GitHub
- URL: https://github.com/markthree/go-globby
- Owner: markthree
- License: mit
- Created: 2023-03-09T11:21:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-28T08:08:23.000Z (8 months ago)
- Last Synced: 2024-10-09T17:27:06.097Z (28 days ago)
- Topics: fast, glob, globby, go, nodejs
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-globby
fast glob. but use go, so high-speed
## Usage
### install
```shell
npm i go-globby
```### program
```ts
import { globbyBin } from 'go-globby'await globbyBin([
'**/*.json', // Recursive acquisition
'!package.json', // Ignore the current directory's package.json
'!node_modules/**/*' // Ignore node_modules folder
])
```
## License
Made with [markthree](https://github.com/markthree)
Published under [MIT License](./LICENSE).