https://github.com/oskang09/geliver-vscode
Webview version of Geliver UI for support internally in vscode editor.
https://github.com/oskang09/geliver-vscode
grpc testing vscode vscode-extension
Last synced: about 2 months ago
JSON representation
Webview version of Geliver UI for support internally in vscode editor.
- Host: GitHub
- URL: https://github.com/oskang09/geliver-vscode
- Owner: Oskang09
- Created: 2021-04-10T19:33:53.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-21T11:09:25.000Z (over 4 years ago)
- Last Synced: 2025-08-22T23:26:19.326Z (10 months ago)
- Topics: grpc, testing, vscode, vscode-extension
- Language: JavaScript
- Homepage:
- Size: 1.55 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Extension Marketplace
* https://marketplace.visualstudio.com/items?itemName=Oskang09.geliver
# geliver
Geliver UI support for vscode editor, natively support with `.proto` files. But if you need to have a complete feature still suggest to use [Postman](https://www.postman.com/).
## Features
* Request, Response History
* Collection and Preset
* App and Editor Theme
* Auto import endpoints from servers
* Import & Export Data ( currently not available in vscode webview )
* Only support UnaryCall now
## Extension Settings
This extension contributes the following settings:
* `geliver.protos`: default protos file path and server settings ( larger directory will take longer to load )
* `geliver.app_theme`: default app theme
* `geliver.editor_theme`: default editor theme
## Example Settings & Screenshot


## Advanced: Faker Data Generation
If you want to have fake data when selecting endpoint to call, you can do with `proto custom field options` as below. Currently it's generating using [Faker](https://github.com/faker-js/faker). As example if you want to have random names you can make proto as below. It will call `faker.name.findName()`.
```proto
import "google/protobuf/descriptor.proto";
extend google.protobuf.FieldOptions {
optional string geliver = 50000;
}
message ExampleRequest {
string ID = 1;
string OrganizationID = 2 [(geliver)="name.findName"];
}
```
## Todo
* Implement client-streaming, server-streaming, and bidirectional-streaming gRPC methods
## Known Issues
1. Currently webview is not able to import & export data.
2. Data not cached since using IndexedDB. In future maybe can use `dexie-cloud`.