smart-home-engine 1.1.0 → 1.1.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.
- package/README.md +4 -1
- package/dist/web/assets/{index-YxGnpZAh.js → index-DttCbWJj.js} +46 -46
- package/dist/web/assets/{tsMode-DAKcfE4c.js → tsMode-BcbP1HsB.js} +1 -1
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/src/lib/ca.js +2 -2
- package/src/lib/mosquitto-conf.js +21 -13
- package/src/lib/ssh-deploy.js +65 -119
- package/src/web/broker-api.js +76 -50
package/README.md
CHANGED
|
@@ -12,7 +12,8 @@ Your home, your rules - written in plain JavaScript.
|
|
|
12
12
|
- **Script HTTP routes** — scripts can register their own REST endpoints under `/api/<scriptName>/`
|
|
13
13
|
- **`require()`** — load npm packages from `~/.she/node_modules/` or relative files inside scripts
|
|
14
14
|
- Supports **InfluxDB**, **Elasticsearch** and **Redis** — convenience methods for time series, full text indexing, shared states across multiple she instances
|
|
15
|
-
- **
|
|
15
|
+
- **Broker management** — optional Mosquitto management: dynamic user/ACL management via the dynsec plugin (`she.broker.*` script API), listener and TLS configuration, local CA with client certificate issuance, SSH-based remote file deployment
|
|
16
|
+
- **Web UI** — script editor, package manager, MQTT browser, Matter device manager, sheDB frontend, log viewer, broker manager
|
|
16
17
|
|
|
17
18
|
## Docs
|
|
18
19
|
|
|
@@ -21,7 +22,9 @@ Your home, your rules - written in plain JavaScript.
|
|
|
21
22
|
| [Getting started](doc/getting-started.md) | Install, write your first script, configure |
|
|
22
23
|
| [Sandbox API](doc/sandbox-api.md) | Everything available inside a script |
|
|
23
24
|
| [sheDB](doc/db/README.md) | Embedded document store — script API, views, examples |
|
|
25
|
+
| [Broker management](doc/broker-management.md) | Mosquitto management, dynsec, TLS, certificates |
|
|
24
26
|
| [Examples](doc/examples.md) | Real-world script patterns |
|
|
27
|
+
| [HTTP API](doc/http-api.md) | REST API reference including broker management endpoints |
|
|
25
28
|
|
|
26
29
|
## Quick look
|
|
27
30
|
|