hueget 1.0.0 → 1.0.2-beta.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/CHANGELOG.md +9 -1
- package/README.md +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,18 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README
|
|
|
4
4
|
|
|
5
5
|
# Bug Fixes and Improvements
|
|
6
6
|
|
|
7
|
+
## 1.0.2-beta.1 (2025-10-05)
|
|
8
|
+
* Addded support for node Maintenance LTS, Active LTS and Current versions
|
|
9
|
+
* Added some small Readme improvements
|
|
10
|
+
* Bumped dependencies: "node": "^20 || ^22 || ^24"
|
|
11
|
+
|
|
12
|
+
## 1.0.1 (2025-09-17)
|
|
13
|
+
* Bumped dependencies: "axios": "^1.12.2",
|
|
14
|
+
* Bumped dependencies: "express": "^5.1.0",
|
|
15
|
+
|
|
7
16
|
## 1.0.0 (2025-01-01)
|
|
8
17
|
* Added support for further controllable api endpoints: schedules,scenes,sensors,rules,resourcelinks,capabilities
|
|
9
18
|
|
|
10
|
-
|
|
11
19
|
## 0.7.6 (2024-12-13)
|
|
12
20
|
* Added Docker config (thanks @Yannis4444)
|
|
13
21
|
* Updated README.md to include Docker notes
|
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ $ node /home/pi/node_modules/hueget/hueget.js -i 192.168.0.101 -u UBxWZChHseyjeF
|
|
|
82
82
|
```
|
|
83
83
|
A successful start of hueget (using the above command to specify ip address 192.168.0.100 and port 1234) will show:
|
|
84
84
|
```
|
|
85
|
-
hueget v1.0.
|
|
85
|
+
hueget v1.0.2
|
|
86
86
|
commands will be sent to 192.168.0.101 with username UBxWZChHseyjeFwAkwgbdQ08x9XASWpanZZVg-mj
|
|
87
87
|
listening on port 1234
|
|
88
88
|
```
|
|
@@ -92,7 +92,7 @@ Ideally hueget will run all the time. You need a tool to start hueget when your
|
|
|
92
92
|
To startup pm2 running so it auto-starts on pi reboot, use this command and follow the instructions from pm2:
|
|
93
93
|
$ pm2 startup
|
|
94
94
|
|
|
95
|
-
To start hueget with pm2, and have it daemonized, monitored and kept alive forever:
|
|
95
|
+
To start hueget with pm2, and have it daemonized, monitored and kept alive forever (note that you need a -- before adding the hueget options):
|
|
96
96
|
```
|
|
97
97
|
$ pm2 start /home/pi/node_modules/hueget/hueget.js -- -i 192.168.0.101 -u UBxWZChHseyjeFwAkwgbdQ08x9XASWpanZZVg-mj -p 3000
|
|
98
98
|
```
|
|
@@ -108,7 +108,7 @@ $ pm2 save
|
|
|
108
108
|
Managing hueget in pm2 is straightforward:
|
|
109
109
|
```
|
|
110
110
|
$ pm2 status
|
|
111
|
-
$ pm2 start /home/pi/node_modules/hueget/hueget.js
|
|
111
|
+
$ pm2 start /home/pi/node_modules/hueget/hueget.js -- -i 192.168.0.101 -u UBxWZChHseyjeFwAkwgbdQ08x9XASWpanZZVg-mj -p 3000
|
|
112
112
|
$ pm2 save
|
|
113
113
|
$ pm2 stop hueget
|
|
114
114
|
$ pm2 restart hueget
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hueget",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2-beta.1",
|
|
4
4
|
"description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights, groups, sensors and more via http GET requests",
|
|
5
5
|
"main": "hueget.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"author": "Jochen Siegenthaler (https://github.com/jsiegenthaler)",
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"axios": "^1.
|
|
29
|
-
"express": "^
|
|
28
|
+
"axios": "^1.12.2",
|
|
29
|
+
"express": "^5.1.0",
|
|
30
30
|
"stdio": "^2.1.3"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": "^22"
|
|
33
|
+
"node": "^20 || ^22 || ^24"
|
|
34
34
|
}
|
|
35
35
|
}
|