mqtt-replay 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +1 -0
  2. package/package.json +30 -0
  3. package/readme.md +2 -0
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('work in progress')
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "mqtt-replay",
3
+ "description": "Capture and replay MQTT traffic.",
4
+ "version": "0.0.1",
5
+ "homepage": "https://github.com/ivoputzer/mqtt-replay#readme",
6
+ "author": "Ivo von Putzer Reibegg <ivo.putzer@gmail.com> (https://github.com/ivoputzer)",
7
+ "type": "module",
8
+ "main": "index.js",
9
+ "keywords": [
10
+ "mqtt",
11
+ "capture",
12
+ "replay",
13
+ "iot",
14
+ "testing"
15
+ ],
16
+ "license": "WTFNMFPL",
17
+ "scripts": {
18
+ "test": "node --test"
19
+ },
20
+ "devDependencies": {
21
+ "standard": "^17.1.2"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/ivoputzer/mqtt-replay/issues"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/ivoputzer/mqtt-replay.git"
29
+ }
30
+ }
package/readme.md ADDED
@@ -0,0 +1,2 @@
1
+ # mqtt-replay
2
+ A lightweight ES6 tool to capture and replay MQTT traffic using UNIX pipes and JSONL.