NATS Microservice Library
A convenient microservice library based on NATS and compatible with nats-go microservices
Description
This is a typescript-first library that provides a convinient (in 10 lines of code or less!) way to write microservises with out of the box auto discovery, observability and load balancing.
Full interoperability with to-be-released nastcli v0.0.36 that adds nats micro info
, nats micro stats
and nats micro ping
commands
It also supports service schema discovery which is not (yet?) supported by nats micro
Limitations / TODO
- Automatic type schemas and validation is incomplete
- No way to get response headers when using request method. Use createInbox => on => send => off sequence instead
InMemoryBroker
mock class does not use queue groups and thus does not load balance
Installation
npm install nats-micro
The library is built in three flavours, you can use any of them: ESM, CommonJS and TypeScript typings
For main classes:
import { Broker, NatsBroker, Microservice } from 'nats-micro';
const { Broker, NatsBroker, Microservice } = require('nats-micro');
For decorators:
import { microservice, method } from 'nats-micro';
const { microservice, method } = require('nats-micro');
and so on. Everything is exported at the package root.
Usage
Starting a microservice is extremely simple:
Functional way
const broker = await new NatsBroker('echo' + process.pid).connect();
await Microservice.create(
broker,
{
name: 'echo',
description: 'Simple echo microservice',
version: '0.0.1',
methods: {
say: {
handler: (text) => text,
},
'config-change-event': {
handler: console.log,
subject: '$EVT.config.change',
},
},
}
);
Declarative way
class EchoMicroservice {
public get config(): MicroserviceConfig {
return {
name: 'echo',
description: 'Simple echo microservice',
version: '0.0.1',
methods: {
say: { handler: this.say },
'config-change-event': { handler: this.onConfigChange },
},
};
}
private say(text: string): string {
return text;
}
private onConfigChange(change: unknown): void {
console.log(change);
}
}
const echoMicroservice = new EchoMicroservice();
const broker = await new NatsBroker('echo' + process.pid).connect();
await Microservice.create(broker, echoMicroservice.config);
Using decorators
@microservice({ name: 'echo', description: 'Decorated service' })
export default class EchoMicroservice {
@method({name: 'say'})
private reply(text: string): string {
return text;
}
@method({ subject: '$EVT.config.change' })
private configChangeEvent(change: unknown): void {
console.log(change);
}
}
const echoMicroservice = new EchoMicroservice();
const broker = await new NatsBroker('echo' + process.pid).connect();
await Microservice.createFromClass(broker, echoMicroservice);
Stopping a microservice
You can easily stop a microservice
const ms = await Microservice.createFromClass(broker, echoMicroservice);
await ms.stop();
To start if again just use the same code as before:
await Microservice.createFromClass(broker, echoMicroservice);
Getting received subject and headers
- You may need to identify what subject a message arrived at.
- You may also need to read incoming message headers
All this can be achieved in a handler method using its second argument
@method()
private configChangeEvent(data: WhatEventTypeYouUse, payload: { subject, headers }): void {
}
Accessing a microservice underlying connection and discovery connection information
Using Microservice.createFromClass
method gives you ability to access the microservice created and its discovery
class EchoMicroservice {
private __microservice: Microservice | undefined;
}
const broker = await new NatsBroker('echo' + process.pid).connect();
const echoMicroservice = new EchoMicroservice();
const microservice = await Microservice.createFromClass(broker, echoMicroservice);
assert(echoMicroservice.____microservice === microservice);
console.log(`Instance ID assigned: ${echoMicroservice.____microservice.discovery.id}`);
Load balancing
When you start a number of number of instances of the same microservice, normally, NATS will automatically balance any calls to the a method across all the microservice instances.
However, you can control his behavior:
@microservice()
export default class BalanceDemoMicroservice {
@method()
public async balanced(): Promise<string> {
return 'I will answer this if everyone else is slower than me';
}
@method({ unbalanced: true })
public async all(): Promise<string> {
return 'I will answer this no matter what. Get ready for multiple answers';
}
@method({ local: true })
public async local(): Promise<string> {
return 'You can reach me only at my local subject, no load balancing';
}
}
Balanced behavior (default)
If you call balance-demo.balanced
, having N instances of balance-demo
microservice, every one of them will receive and respond to every Nth call on average. The logic of load balancing is based on NATS internal "queue groups" functionality ans is described in its documentation.
Unbalanced behavior
If you send a call to balance-demo.all
however, it will be received and responded by every balance-demo
microservice that has the all
method.
This is useful for broadcast event buses, when you want all microservices to receive an even no matter what and possibly respond to it.
Having this utilized be ready to receiving multiple responses to a request.
Local endpoint behavior
As for the balance-demo.local
, there is no such subject any microservice is subcribed to. Instead instance ID
of the balance-demo
microservice will listen to balance-demo.<microservice ID>.local
only. You will need to use broker.request(..., { microservice: 'balance-demo', instance: '<microservice ID>', method: 'local' }, ...)
for that.
This feature is useful for scenarios like when you have multiple instances of the same microservice, want to discover their IDs and then address specific ones of them.
Microservice discovery and monitoring
While you can use NATS native way to discover currently running microservices by sending messages to subject "$SRV.INFO" and collecting their responses, nats-micro
library provides an additional convenient way of doing this.
Every nats-micro microservice will announce itself at "$SRV.REG" subject, which you can listen either manually subscribing to the subject or using Monitor
class.
const monitor = new Monitor(broker);
monitor.on('added', (service) => console.log);
monitor.on('change', (services) => console.log);
monitor.discover(10000);
await monitor.discover(10000);
const servicesRunning = monitor.services;
monitor.discover(10000, { doNotClear: true });
monitor.startPeriodicDiscovery(60000, 10000);
monitor.stopPeriodicDiscovery();
Microservice registration and deregistration
Using Monitor
you can not only watch for microservices coming online, but also for disconnecting ones.
For this you need a NATS server with system account configured and create two separate connections from your code: one for a usual user and one for a system user:
const monitor = new Monitor(userBroker, systemBroker);
monitor.on('removed', (service) => console.log);
This code will give Monitor
an ability to subscribe to "$SYS.ACCOUNT.*.DISCONNECT" subject and watch connections going offline.
As every microservice created with nats-micro
has a _nats.client.id
value in its metadata, this allows Monitor
to associate microservices with NATS connections and understand if they went offline when their parent broker is disconnects for whatever reason.
Having a NATS connection information also allows accessing client id, IP address, username and account name for every microservice.
Unit tesing
If you need to unittest your code that uses nats-miro
, there is a helpful class InMemoryBroker
that mocks NATS connection without real NATS or even any network.
It implements the same Broker
interface that NatsBroker
class does and can be used in all scenarios where NatsBroker
is used.
import { InMemoryBroker } from 'nats-micro';
const { InMemoryBroker } = require('nats-micro');