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: 4 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T14:55:08.000Z (4 months ago)
- Last Synced: 2025-03-03T15:45:05.783Z (4 months ago)
- Topics: go, golang, gomodules, grpc, microservices-architecture, microservies, nodejs, protocol-buffers
- Language: Go
- Homepage:
- Size: 422 KB
- Stars: 2
- Watchers: 3
- 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
```