Created
December 13, 2018 13:36
-
-
Save midnightcodr/d863d79e5cda115f33908d1abc99d784 to your computer and use it in GitHub Desktop.
updated example based on original nsqjs github example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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