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

https://github.com/meain/glee

Hoogle, but for every language
https://github.com/meain/glee

Last synced: 23 days ago
JSON representation

Hoogle, but for every language

Awesome Lists containing this project

README

        

# glee

> [Hoogle](https://hoogle.haskell.org/) but for every language, using [tree-sitter](https://tree-sitter.github.io/tree-sitter/)

*Currently only supports Golang, but the rest should be here soon.*

### Usage

```
Usage: glee [OPTIONS]
Hoogle like search for functions in all languages

Options:
-match string
matching algorithm (options: includes, default) (default "default")

Example: glee -match includes '(Path, string) -> (Path, error)'
```

### Example

```
$ glee -match includes '( Path ) -> ( Path )'

pkg/path/drive.go:19:0:ToDrivePath (Path) -> (*DrivePath, error)
transformer/restore_path.go:42:0:basicLocationPath (path.Path, *path.Builder) -> (path.Path, error)
```