# mqemitter

> An Opinionated Message Queue with an emitter-style API

Latest version **7.1.0** (published 2025-07-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install mqemitter
pnpm add mqemitter
yarn add mqemitter
bun add mqemitter
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 7.1.0 |
| Published | 2025-07-14 |
| First published | 2014-02-27 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=20 |
| Dependencies | 2 |
| Unpacked size | 40 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 166 |
| Author | Matteo Collina |
| Maintainers | matteo.collina |
| Keywords | emitter, events, message queue, mq, publish, subscribe, pub, sub |

## Links

- npm: https://www.npmjs.com/package/mqemitter
- Repository: https://github.com/mcollina/mqemitter
- Homepage: https://github.com/mcollina/mqemitter#readme
- Issues: http://github.com/mcollina/mqemitter/issues
- npm.io page: https://npm.io/package/mqemitter

## Dependencies (2)

- [qlobber](https://npm.io/package/qlobber.md) ^8.0.1
- [fastparallel](https://npm.io/package/fastparallel.md) ^2.4.1

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 7.1.0 (latest) — 2025-07-14
- 7.0.0 — 2025-04-10
- 6.0.2 — 2024-07-24
- 6.0.1 — 2024-07-24
- 6.0.0 — 2024-05-06
- 5.0.0 — 2022-05-23
- 4.5.0 — 2021-10-19
- 4.4.1 — 2021-02-22
- 4.4.0 — 2020-09-03
- 4.3.0 — 2020-07-28
- 4.1.4 — 2020-07-28
- 4.2.0 — 2020-04-24
- 4.1.3 — 2020-03-30
- 4.1.2 — 2020-02-27
- 4.1.1 — 2020-02-20
- … 19 more at https://npm.io/package/mqemitter/versions

## README

<!-- markdownlint-disable MD013 MD024 -->

# MQEmitter

![ci](https://github.com/mcollina/mqemitter/workflows/ci/badge.svg)
[![Known Vulnerabilities](https://snyk.io/test/github/mcollina/mqemitter/badge.svg)](https://snyk.io/test/github/mcollina/mqemitter)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)\
[![NPM version](https://img.shields.io/npm/v/mqemitter.svg?style=flat)](https://www.npmjs.com/mqemitter)
[![NPM downloads](https://img.shields.io/npm/dm/mqemitter.svg?style=flat)](https://www.npmjs.com/mqemitter)

An Opinionated Message Queue with an emitter-style API, but with callbacks.

If you need a multi process MQEmitter, check out the table below:

- [mqemitter-redis]: Redis-powered mqemitter
- [mqemitter-mongodb]: Mongodb based mqemitter
- [mqemitter-child-process]: Share the same mqemitter between a hierarchy of child processes
- [mqemitter-cs]: Expose a MQEmitter via a simple client/server protocol
- [mqemitter-p2p]: A P2P implementation of MQEmitter, based on HyperEmitter and a Merkle DAG
- [mqemitter-aerospike]: Aerospike mqemitter

## Installation

```sh
npm install mqemitter
```

## Examples

```js
const mq = require('mqemitter')
const emitter = mq({ concurrency: 5 })
const message

emitter.on('hello world', function (message, cb) {
  // call callback when you are done
  // do not pass any errors, the emitter cannot handle it.
  cb()
})

// topic is mandatory
message = { topic: 'hello world', payload: 'or any other fields' }
emitter.emit(message, function () {
  // emitter will never return an error
})
```

## API

- [new MQEmitter ([options])](#new-mqemitter-options)
- [emitter.emit (message, callback)](#emitteremit-message-callback)
- [emitter.on (topic, listener, [callback])](#emitteron-topic-listener-callback)
- [emitter.removeListener (topic, listener, [callback])](#emitterremovelistener-topic-listener-callback)
- [emitter.close (callback)](#emitterclose-callback)

## new MQEmitter ([options])

- options `<object>`
  - `concurrency` `<number>` maximum number of concurrent messages that can be on concurrent delivery. __Default__: `0`
  - `wildcardOne` `<string>` a char to use for matching exactly one _non-empty_ level word. __Default__: `+`
  - `wildcardSome` `<string>` a char to use for matching multiple level wildcards. __Default__: #`
  - `matchEmptyLevels` `<boolean>` If true then `wildcardOne` also matches an empty word. __Default__: `true`
  - `separator` `<string>`  a separator character to use for separating words. __Default__: `/`

Create a new MQEmitter class.

MQEmitter is the class and function exposed by this module.
It can be created by `MQEmitter()` or using `new MQEmitter()`.

For more information on wildcards, see [this explanation](#wildcards) or [Qlobber](https://www.npmjs.com/qlobber).

## emitter.emit (message, callback)

- `message` `<object>`
- `callback` `<Function>` `(error) => void`
  - error `<Error>` | `null`

Emit the given message, which must have a `topic` property, which can contain wildcards as defined on creation.

## emitter.on (topic, listener, [callback])

- `topic` `<string>`
- `listener` `<Function>` `(message, done) => void`
- `callback` `<Function>` `() => void`

Add the given listener to the passed topic. Topic can contain wildcards, as defined on creation.

The `listener` __must never error__ and `done` must not be called with an __`err`__ object.

`callback` will be called when the event subscribe is done correctly.

## emitter.removeListener (topic, listener, [callback])

The inverse of `on`.

## emitter.close (callback)

- `callback` `<Function>` `() => void`

Close the given emitter. After, all writes will return an error.

## Wildcards

__MQEmitter__ supports the use of wildcards: every topic is splitted according to `separator`.

The wildcard character `+` matches exactly _non-empty_ one word:

```js
const mq = require('mqemitter')
const emitter = mq()

emitter.on('hello/+/world', function(message, cb) {
  // will ONLY capture { topic: 'hello/my/world', 'something': 'more' }
  console.log(message)
  cb()
})
emitter.on('hello/+', function(message, cb) {
  // will not be called
  console.log(message)
  cb()
})

emitter.emit({ topic: 'hello/my/world', something: 'more' })
emitter.emit({ topic: 'hello//world', something: 'more' })
```

The wildcard character `+` matches one word:

```js
const mq = require('mqemitter')
const emitter = mq({ matchEmptyLevels: true })

emitter.on('hello/+/world', function(message, cb) {
  // will capture { topic: 'hello/my/world', 'something': 'more' }
  // and capture { topic: 'hello//world', 'something': 'more' }
  console.log(message)
  cb()
})

emitter.on('hello/+', function(message, cb) {
  // will not be called
  console.log(message)
  cb()
})

emitter.emit({ topic: 'hello/my/world', something: 'more' })
emitter.emit({ topic: 'hello//world', something: 'more' })
```

The wildcard character `#` matches zero or more words:

```js
const mq = require('mqemitter')
const emitter = mq()

emitter.on('hello/#', function(message, cb) {
  // this will print { topic: 'hello/my/world', 'something': 'more' }
  console.log(message)
  cb()
})

emitter.on('#', function(message, cb) {
  // this will print { topic: 'hello/my/world', 'something': 'more' }
  console.log(message)
  cb()
})

emitter.on('hello/my/world/#', function(message, cb) {
  // this will print { topic: 'hello/my/world', 'something': 'more' }
  console.log(message)
  cb()
})

emitter.emit({ topic: 'hello/my/world', something: 'more' })
```

Of course, you can mix `#` and `+` in the same subscription.

## LICENSE

MIT

[mqemitter-redis]: https://www.npmjs.com/mqemitter-redis
[mqemitter-mongodb]: https://www.npmjs.com/mqemitter-mongodb
[mqemitter-child-process]: https://www.npmjs.com/mqemitter-child-process
[mqemitter-cs]: https://www.npmjs.com/mqemitter-cs
[mqemitter-p2p]: https://www.npmjs.com/mqemitter-p2p
[mqemitter-aerospike]: https://www.npmjs.com/mqemitter-aerospike

---
_Source: https://npm.io/package/mqemitter · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
