Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 813 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 813 Bytes

ProductInfo Service and Client - nodejs Implementation

Building and Running Service

In order to build and run, Go to nodejs module root directory location (productinfo/nodejs/server) and execute the following shell command,

node server.js

Building and Running Client

In order to build and run, Go to nodejs module root directory location (productinfo/nodejs/client) and execute the following shell command,

node client.js

Additional Information

Install required dependencies

Install grpc module

$ npm install grpc

Install proto-loader module

$ npm install @grpc/proto-loader

Install uuid module

$ npm install uuid

Install async module

$ npm install async