Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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).