Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Available binaries are:

### macOS
``` sh
$ brew tap ktr0731/evans
$ brew install evans
brew tap ktr0731/evans
brew install evans
```

### Docker image
Expand All @@ -100,7 +100,7 @@ $ docker run --rm -v "$(pwd):/mount:ro" \
Go v1.16 or later is required.

``` sh
$ go install github.com/ktr0731/evans@latest
go install github.com/ktr0731/evans@latest
```

## Usage (REPL)
Expand All @@ -112,18 +112,18 @@ The proto file which read in the demonstration and its implementation are availa

Enter to REPL.
``` sh
$ cd grpc-test
$ evans repl api/api.proto
cd grpc-test
evans repl api/api.proto
```

If your server is enabling [gRPC reflection](https://github.com/grpc/grpc/blob/master/doc/server-reflection.md), you can launch Evans with only `-r` (`--reflection`) option.
``` sh
$ evans -r repl
evans -r repl
```

Also if the server requires secure TLS connections, you can launch Evans with the `-t` (`--tls`) option.
``` sh
$ evans --tls --host example.com -r repl
evans --tls --host example.com -r repl
```

To show package names of proto files REPL read:
Expand Down