Skip to content

Latest commit

 

History

History

nodejs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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