@apocaliss92/nodelink-js 0.1.8 → 0.1.14
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 +79 -7
- package/dist/{DiagnosticsTools-MTXG65O3.js → DiagnosticsTools-YEML4E5V.js} +2 -2
- package/dist/{chunk-AFUYHWWQ.js → chunk-L5U63S5K.js} +673 -64
- package/dist/chunk-L5U63S5K.js.map +1 -0
- package/dist/{chunk-MC2BRLLE.js → chunk-QEA2V52E.js} +71 -9
- package/dist/chunk-QEA2V52E.js.map +1 -0
- package/dist/cli/rtsp-server.cjs +739 -68
- package/dist/cli/rtsp-server.cjs.map +1 -1
- package/dist/cli/rtsp-server.js +2 -2
- package/dist/index.cjs +2041 -191
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +418 -4
- package/dist/index.d.ts +365 -3
- package/dist/index.js +1202 -32
- package/dist/index.js.map +1 -1
- package/package.json +13 -3
- package/dist/chunk-AFUYHWWQ.js.map +0 -1
- package/dist/chunk-MC2BRLLE.js.map +0 -1
- /package/dist/{DiagnosticsTools-MTXG65O3.js.map → DiagnosticsTools-YEML4E5V.js.map} +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<table>
|
|
2
|
+
<tr>
|
|
3
|
+
<td><img src="app/client/public/icon-512x512.png" alt="nodelink.js" width="256" height="256"></td>
|
|
4
|
+
<td>
|
|
5
|
+
<h1>nodelink.js</h1>
|
|
6
|
+
<p>A TypeScript library for interacting with Reolink IP cameras and NVRs using the proprietary Baichuan protocol and CGI API.</p>
|
|
7
|
+
</td>
|
|
8
|
+
</tr>
|
|
9
|
+
</table>
|
|
4
10
|
|
|
5
11
|
## Credits
|
|
6
12
|
|
|
@@ -24,6 +30,75 @@ This library is inspired by and based on the reverse engineering work done by:
|
|
|
24
30
|
|
|
25
31
|
---
|
|
26
32
|
|
|
33
|
+
## 🖥️ Manager UI (Web Dashboard)
|
|
34
|
+
|
|
35
|
+
The library includes a **complete web-based management interface** for easy camera configuration and streaming control without writing code.
|
|
36
|
+
|
|
37
|
+
<p align="center">
|
|
38
|
+
<b>Features:</b>
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
- 🎛️ **Camera Management** - Add, configure, and monitor multiple cameras
|
|
42
|
+
- 📹 **Live Streaming** - Preview streams via MJPEG, WebRTC, or RTSP
|
|
43
|
+
- 📊 **Real-time Logs** - Monitor camera events and system logs
|
|
44
|
+
- ⚙️ **Settings** - Configure RTSP proxy, ports, and auto-start options
|
|
45
|
+
- 📱 **PWA Support** - Install as a Progressive Web App on mobile devices
|
|
46
|
+
- 🌐 **Responsive Design** - Works on desktop, tablet, and mobile
|
|
47
|
+
|
|
48
|
+
### Quick Start (Development)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
cd app
|
|
52
|
+
npm install
|
|
53
|
+
npm run dev
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
- Web UI: http://localhost:5173
|
|
57
|
+
- API Server: http://localhost:3000
|
|
58
|
+
|
|
59
|
+
### Production Build
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
cd app
|
|
63
|
+
npm run build
|
|
64
|
+
npm start
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Open http://localhost:3000 in your browser.
|
|
68
|
+
|
|
69
|
+
### Docker Deployment (Recommended)
|
|
70
|
+
|
|
71
|
+
The easiest way to run the Manager UI is with Docker:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Using pre-built image
|
|
75
|
+
docker pull ghcr.io/apocaliss92/nodelink-manager:latest
|
|
76
|
+
|
|
77
|
+
docker run -d \
|
|
78
|
+
--name nodelink-manager \
|
|
79
|
+
--network host \
|
|
80
|
+
-v nodelink-data:/data \
|
|
81
|
+
ghcr.io/apocaliss92/nodelink-manager:latest
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Or with Docker Compose:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
docker-compose up -d
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**Environment Variables:**
|
|
91
|
+
|
|
92
|
+
| Variable | Default | Description |
|
|
93
|
+
| ----------- | ------- | ------------------------------------ |
|
|
94
|
+
| `PORT` | `3000` | HTTP server port |
|
|
95
|
+
| `RTSP_PORT` | `8554` | RTSP proxy port |
|
|
96
|
+
| `DATA_PATH` | `/data` | Directory for settings.json and logs |
|
|
97
|
+
|
|
98
|
+
📖 **[Full Docker documentation →](./DOCKER.md)**
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
27
102
|
## 📚 Full API Documentation
|
|
28
103
|
|
|
29
104
|
For detailed method-by-method documentation, see the [documentation](./documentation/) folder:
|
|
@@ -381,10 +456,7 @@ CAMERA_PASSWORD=your-password
|
|
|
381
456
|
The library supports custom loggers:
|
|
382
457
|
|
|
383
458
|
```typescript
|
|
384
|
-
import {
|
|
385
|
-
ReolinkBaichuanApi,
|
|
386
|
-
createLogger,
|
|
387
|
-
} from "@apocaliss92/nodelink-js";
|
|
459
|
+
import { ReolinkBaichuanApi, createLogger } from "@apocaliss92/nodelink-js";
|
|
388
460
|
|
|
389
461
|
const logger = createLogger({ level: "debug" });
|
|
390
462
|
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
runMultifocalDiagnosticsConsecutively,
|
|
10
10
|
sampleStreams,
|
|
11
11
|
testChannelStreams
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-QEA2V52E.js";
|
|
13
13
|
export {
|
|
14
14
|
collectCgiDiagnostics,
|
|
15
15
|
collectMultifocalDiagnostics,
|
|
@@ -22,4 +22,4 @@ export {
|
|
|
22
22
|
sampleStreams,
|
|
23
23
|
testChannelStreams
|
|
24
24
|
};
|
|
25
|
-
//# sourceMappingURL=DiagnosticsTools-
|
|
25
|
+
//# sourceMappingURL=DiagnosticsTools-YEML4E5V.js.map
|