# @sopherapps/simplemq

> A simple message queue server that requires only nodejs

Latest version **0.0.4** (published 2021-03-29) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @sopherapps/simplemq
pnpm add @sopherapps/simplemq
yarn add @sopherapps/simplemq
bun add @sopherapps/simplemq
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2021-03-29 |
| First published | 2021-03-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 45 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Martin Ahindura |
| Maintainers | tinitto |
| Keywords | gRPC, message, queue |

## Links

- npm: https://www.npmjs.com/package/@sopherapps/simplemq
- npm.io page: https://npm.io/package/@sopherapps/simplemq

## Dependencies (5)

- [ajv](https://npm.io/package/ajv.md) ^7.1.1
- [grpc](https://npm.io/package/grpc.md) ^1.24.5
- [level](https://npm.io/package/level.md) ^6.0.1
- [hyperid](https://npm.io/package/hyperid.md) ^2.1.0
- [@grpc/proto-loader](https://npm.io/package/@grpc/proto-loader.md) ^0.5.6

## Alternatives

- [cron](https://npm.io/package/cron.md) — 4.9M weekly downloads
- [@vercel/queue](https://npm.io/package/@vercel/queue.md) — 731.6K weekly downloads
- [create-sonicjs](https://npm.io/package/create-sonicjs.md) — 1.6K weekly downloads
- [@exellix/jobs-api](https://npm.io/package/@exellix/jobs-api.md) — 941 weekly downloads
- [@forwardimpact/libskill](https://npm.io/package/@forwardimpact/libskill.md) — 575 weekly downloads

## Recent versions

- 0.0.4 (latest) — 2021-03-29
- 0.0.3 — 2021-03-12
- 0.0.2 — 2021-03-12
- 0.0.1 — 2021-03-12

## README

# simplemq

A simple message queue server that requires only nodejs.
It is can be used to pass JSON/string messages from one application to another in an
asynchronous way across the network.

Do note that **this package is still under heavy development**

## Components

This package includes:

1. A message queue server
2. A message queue client

One can chose to use any or both of these two components.

## Major Dependencies

- [gRPC](https://grpc.io/)
  - [protocol buffers 3](https://developers.google.com/protocol-buffers/docs/overview)
  - [Protobuf.js](https://www.npmjs.com/package/protobufjs)
- [Nodejs](https://nodejs.org/en/)
- [level](https://github.com/Level/level)
- [levelDB](https://github.com/google/leveldb)

## Getting Started

### Running the simplemq Server

- Create a nodejs project

  ```sh
  npm init -y
  ```

- Install simplemq

  ```sh
  npm install @sopherapps/simplemq
  ```

- Create the server file. Let's name it `server.js`

  ```sh
  touch server.js
  ```

- In `server.js` file, import the Server component from `simplemq`, initialize it then call its `start` method, and its `stop` method to stop the server in case of an error e.g. a KeyboardInterrupt
  The `options` passed on initiliazation include:

  - the `port` to run on
  - the `ttl` i.e. time to live in milliseconds for the messages before they are considered stale
  - the `ttlInterval` i.e. the interval in milliseconds for clearing out stale messages
  - the `streamInterval` i.e. the interval at which messages are to be sent to any listening client
  - the `dbFilePath` i.e. the base path to the leveldb database to persist the messages, subscribers and topics
  - the `maxWaitBeforeForcedShutDown` i.e. the number of milliseconds to wait after a shutdown has been initiated for a forceful shutdown to come into action

  ```Javascript
  const {Server} = require('simplemq');
  const server = new Server({
      port: 38000, // Default 38000
      ttl: 1000 * 60 * 60 * 24 * 30, // Default 30 days
      ttlInterval: 1000 * 60 * 60 * 24, // Default 1 day
      ...
  });

  try {
    server.start();
  } catch {
    if(server){
      server.stop();
    }
  }
  ```

- Run the nodejs server script

  ```sh
  node server.js
  ```

### Connecting to a simplemq Server

- In your nodejs project, install simplemq

  ```sh
  npm install @sopherapps/simplemq
  ```

- Create the client file if you don't have one yet. Let's call it `client.js`

- In `client.js`, import the Client component from `simplemq` and initialize it with `options`
  The `config` on initialization specifies:

  - the IP address (`ipAddress`) of the simplemq server
  - the optional `port` on which the simplemq server is running. Default is 38000.
  - the optional `interval` in milliseconds at which to receive the messages. Default is 1000.
  - a random `clientId` to identify the client

  ```Javascript
  const {Client} = require('@sopherapps/simplemq');

  const client = new Client({
      ipAddress: 'localhost', // the ip address, for now we will assume the server is on this computer
      port: 38000, // Default is 38000, the port as specified in the server code
      interval: 1000, // Default is 1000, receive messages at least every second
      clientId: 'ity65476t9ygyf', // some random identifier the server will use to identify this client everytime the client connects
  });
  ```

- To connect to the remote server, call the `connect()` method of the client. Any attempt
  to generate another producer or listener from the client before it is connected will throw an exception.

  ```Javascript
  client.connect();
  ```

- Then call the client's `getMessageProducer` method to get a message producer, with an `options` argument specifying:

  - the `topic` - the topic to send to
  - the optional `onError` - the error handler function
  - the `onMessage` - the message handler

  ```Javascript
  const messageProducer = client.getMessageProducer({
    topic: 'Some topic',
    onError: (err)=>{console.error(err);}
    onMessage: (message)=>{console.log(message);}
  });
  ```

- To send messages to the selected topic, repeatedly call the `send` method of the message producer instance,
  while providing the data in JSON form that is to be sent

  ```Javascript
  messageProducer.send(JSON.stringify({hello: 'haloha'}));
  messageProducer.send(JSON.stringify({bye: 'good bye'}));
  ```

- Or `getMessageListener` method to get a message listener with an `options` argument specifying:

  - the `topic` that is to be listened to
  - the `onMessage` handler to be called whenever a message is received
  - the optional `onSubscription` handler to be called when a client succesfully subscribes to the given topic
  - the optional `onStop` handler to be called when a client stops listening
  - the optional `onStart` handler to be called when the client starts listening for messages

  ```Javascript
  const messageListener = client.getMessageListener({
    topic: 'Some topic',
    onError: (err) => {
        throw err;
    },
    onMessage: (message) => {
      console.log(message);
    },
    onSubscription: (topicName) => {
      console.log(`Subscribed to ${topicName}`);
    },
    onStop: () => {
      console.log(`Stopped listening on ${client.ipAddressAndPort}`);
    },
    onStart: () => {
      console.log(`Listening on ${client.ipAddressAndPort} to Topic: ${topic}`);
    },
  });
  ```

- To start listening for messages, call the `start` method of the message listener instance

  ```Javascript
  messageListener.start();
  ```

- To stop listening for messages, call the `stop` method of the message listener instance

  ```Javascript
  messageListener.stop();
  ```

- To disconnect the client from the remote server, call the `disconnect()` method of the client instance. Any attempt
  to generate another producer or listener from the client after it has been disconnected will throw an exception.

  ```Javascript
  client.disconnect();
  ```

## How To Contribute

Coming soon.

### How to test

- In the root of the project, install the dependencies

  ```sh
  npm install
  ```

- Run the test command

  ```sh
  npm test
  ```

## ToDo

- [x] Make leveldb as persistent store
- [x] Modularize the DB module itself into TOPICS, MESSAGES AND SUBSCRIBERS
- [x] Add JavaScript client code
- [ ] Create python client package
- [ ] Create java client package
- [ ] Add option to add certificates for authentication
- [ ] Add option for broadcast messages that don't get persisted
- [ ] Create sample app using simplemq
- [ ] Create blog posts showing its use
- [ ] Create videos showing its use
- [ ] Create a cloud service for simplemq
- [ ] Add logger
- [x] Publish npm package
- [ ] Publish pypi package

## License

Copyright (c) 2021 [Martin Ahindura](https://github.com/Tinitto) Licensed under the [MIT License](./LICENSE)

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