Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Created December 13, 2018 13:36
Show Gist options
  • Save midnightcodr/d863d79e5cda115f33908d1abc99d784 to your computer and use it in GitHub Desktop.
Save midnightcodr/d863d79e5cda115f33908d1abc99d784 to your computer and use it in GitHub Desktop.
updated example based on original nsqjs github example
const nsq = require('nsqjs')
const reader = new nsq.Reader('sample_topic', 'test_channel', {
nsqdTCPAddresses: ['127.0.0.1:4150']
})
reader.connect()
reader.on('message', msg => {
console.log('Received message [%s]: %s', msg.id, msg.body.toString())
msg.finish()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment