0.3.0 • Published 5 years ago

fastify-nats v0.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

fastify-nats

js-standard-style npm version npm downloads

NATS Server is a simple, high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures.

Under the hood NATS client is used, the options that you pass to register will be passed to the nats client.

Install

npm i fastify-nats --save

Usage

Add it to you project with register and you are done!
You can access the nats Connection via fastify.nats.

const fastify = require('fastify')

fastify.register(require('fastify-nats'), {
  url: 'nats:demo.nats.io:4222'
}, err => {
  if (err) throw err
})

fastify.listen(3000, err => {
  if (err) throw err
  console.log(`server listening on ${fastify.server.address().port}`)
})

and later

fastify.nats.publish(topic, message);

License

Licensed under MIT.