0.0.2 • Published 4 years ago

nats-rpc-poc v0.0.2

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
4 years ago

NATS JSON-RPC PoC

npm version Downloads

This library allows you to wrap your classes and use them over the network

Usage

  1. Wrap your class
const nastTransportProvider = await NatsTransportProvider.create()
await nastTransportProvider.exposeService('MyService', new MyServiceClass())
  1. Write client code
const nastTransportProvider = await NatsTransportProvider.create()
const myService = await nastTransportProvider.getRemoteService<MyService>('MyService')

const result = await myService.anyMethod(param1, param2)

Don't forget to call stopService and destory for correctly close connection

Environments & dependencies

Install node modules and start NATS on nats://localhost:4222

$ docker-compose up -d
$ yarn

Example

Run in two different terminals

$ yarn start:service
$ yarn start:client
0.0.2

4 years ago

0.0.1

4 years ago