nats-rpc-poc

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

Usage no npm install needed!

<script type="module">
  import natsRpcPoc from 'https://cdn.skypack.dev/nats-rpc-poc';
</script>

README

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