https://github.com/byteshiva/simplegrpc
Simple GRPC - demo using golang server and nodejs client
https://github.com/byteshiva/simplegrpc
go golang gomodules grpc microservices-architecture microservies nodejs protocol-buffers
Last synced: 8 months ago
JSON representation
Simple GRPC - demo using golang server and nodejs client
- Host: GitHub
- URL: https://github.com/byteshiva/simplegrpc
- Owner: byteshiva
- License: apache-2.0
- Created: 2020-09-08T07:58:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-07-21T21:30:39.000Z (8 months ago)
- Last Synced: 2025-07-21T23:22:57.024Z (8 months ago)
- Topics: go, golang, gomodules, grpc, microservices-architecture, microservies, nodejs, protocol-buffers
- Language: Go
- Homepage:
- Size: 419 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simplegrpc
Grpc golang and nodejs demo
```
// Server Side - golang
cd simplegrpc
go run simpleserver.go
```
```
// Client side - nodejs
cd nodejs-client/
// do npm install
npm install
// or yarn install
yarn install
node client_add.js 15 33
node client_sub.js 35 10
```
