npm install
Run server first:
npm run server
Open another terminal.
Success without promisify:
npm run without
Error with promisify:
npm run with
Function utilizes this
. So we need to use function binding with promisifyGrpc(client.test.bind(client))
;