fastify-nats

0.3.0 • Public • Published

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.

Package Sidebar

Install

npm i fastify-nats

Weekly Downloads

10

Version

0.3.0

License

MIT

Unpacked Size

4.13 kB

Total Files

5

Last publish

Collaborators

  • mahmed8003
  • smartiniatnpm