![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@ciesielskico/home-assistant-rxjs
Advanced tools
rxjs wrapper for home-assistant-js-websocket
npm install @ciesielskico/home-assistant-rxjs
Create long-lived access token under http://homeassistant:8123/profile
Create a .env
file
HOST=http://homeassistant.local:8123
ACCESS_TOKEN=<long-lived-access-token>
LOGLEVEL=INFO
HomeAssistantRXJS
and define your automationsconst home = new HomeAssistantRXJS();
home.initialize();
const motion$ = home.entities.pipe(
select('binary_sensor.hall_motion_sensor', 'state'),
);
// When motion detected turn the light on
// and after 2 seconds turn it off
motion$
.pipe(
filter(state => state === 'on'),
switchMapTo(home.lights.turnOn('light.hall_light')),
delay(2000),
switchMapTo(home.lights.turnOff('light.hall_light')),
)
.subscribe();
Install the Samba share add-on
Open the share under \\192.168.x.<ha-ip>
Create folder ha-rxjs
inside addons
Copy src
, package.json
, config.json
, Dockerfile
and run.sh
In Home Assistant under Supervisor choose Add-On Store
Refresh (upper-right corner)
Install
Start add-on
Start Typescript dev server
npm run dev
docker build --build-arg BUILD_FROM="homeassistant/amd64-base:latest" -t ha-rxjs .
docker run --rm --env-file=.env ha-rxjs
FAQs
rxjs addons for home-assistant-js-websocket
We found that @ciesielskico/home-assistant-rxjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.