Socket
Book a DemoInstallSign in
Socket

nsqubicle

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nsqubicle

easy to use module for nsq

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
1
Maintainers
2
Weekly downloads
 
Created
Source

nsqubicle

Wraps nsq.js into an easy to use interface

npm install nsqubicle

Usage

Read messages using pull and write messages using push

var nsq = require('nsqubicle');
var queue = nsq({
	nsqd: ['127.0.0.1:4150'],
	channel: 'my-channel'
});

queue.pull('test', function(message, callback) {
	console.log('we have pulled a message!', message);
	callback(); // we are done with the message
});

queue.push('test', {hello:'world'});

The options map is passed directly to nsq.js as well. In addition to the regular nsq options you can pass

{
	namespace: 'namespace-topics-with-me',
	broadcast: true // set to false to disable broadcasting
}

If you call the callback with an error the message will be requeued.

Broadcasting

Per default nsqubicle broadcast all messages to a broadcast topic as well. You can read these messages by calling pull without a topic

queue.pull(function(topic, message, callback) {
	console.log('someone pushed to', topic, 'with message', message);
	callback();
});

License

MIT

FAQs

Package last updated on 15 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.