Socket
Socket
Sign inDemoInstall

@koerber/mqtt-simple-level-store

Package Overview
Dependencies
3
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@koerber/mqtt-simple-level-store


Version published
Maintainers
2
Created

Readme

Source

MQTT.js Level Simple Store

This project implements a Store as required by MQTT.js, backed by a simple level database.

This is basically equivalent to the already-existing mqtt-level-store project, but sans the level-sublevel dependancy, and without double-lookups for messages.

Usage

Very simply:

const mqtt = require('mqtt')
const simple = require('@koerber/mqtt-simple-level-store')

const outgoingStore = simple('/path/to/our/db/outgoing')
const incomingStore = simple('/somewhere/else/incoming')

const client = mqtt.connect('mqtts://some_mqtt_host:1234/', {
  outgoingStore,
  incomingStore,
  // ... other options
})

Keywords

FAQs

Last updated on 28 May 2019

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc