Minimalistic gRPC microservice framework
npm install maliA minimalistic gRPC microservice framework.








Install module and required peer dependencies.
```
$ npm install mali @grpc/grpc-js @grpc/proto-loader
`js
const Mali = require('mali')
function sayHello (ctx) {
ctx.res = { message: Hello ${ctx.req.name} }
}
function main () {
const app = new Mali('helloworld.proto')
app.use({ sayHello })
app.start('0.0.0.0:50051')
}
``
Full documentation.
Apache-2.0