Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
home-assistant-js-websocket
Advanced tools
This is a websocket client written in JavaScript that communicates with the Home Assistant websocket API. It can be used to integrate Home Assistant into your apps. It has 0 dependencies.
import { createConnection, subscribeEntities } from 'home-assistant-js-websocket';
function stateChanged(event) {
console.log('state changed', event);
}
createConnection('ws://localhost:8123/api/websocket').then(
(conn) => {
console.log('Connection established!');
subscribeEntities(conn, entities => console.log('New entities!', entities));
},
err => console.error('Connection failed with code', err)
)
Connections to the websocket API are initiated by calling createConnection(url[, options])
. createConnection
will return a promise that will resolve to either a Connection
object or rejects with an error code.
Currently the following options are available:
Option | Description |
---|---|
authToken | Auth token to use to validate with Home Assistant. |
setupRetry | Number of times to retry initial connection when it fails. -1 means infinite. |
Currently the following error codes can be expected:
Error | Description |
---|---|
ERR_CANNOT_CONNECT | If the client was unable to connect to the websocket API. |
ERR_INVALID_AUTH | If the supplied authentication was invalid. |
You can import them into your code as follows:
import { ERR_CANNOT_CONNECT, ERR_INVALID_AUTH } from 'home-assistant-js-websocket';
The connection object will automatically try to reconnect to the server when the connection gets lost. On reconnect, it will automatically resubscribe the event listeners.
The Connection
object implements three events related to the reconnecting logic.
Event | Data | Description |
---|---|---|
ready | - | Fired when authentication is successful and the connection is ready to take commands. |
disconnected | - | Fired when the connection is lost. |
reconnect-error | Error code | Fired when we encounter a fatal error when trying to reconnect. Currently limited to ERR_INVALID_AUTH . |
You can attach and remove listeners as follows:
function eventHandler(connection, data) {
console.log('Connection has been established again');
}
conn.addEventListener('ready', eventHandler);
conn.removeEventListener('ready', eventHandler);
You can subscribe to the entities of Home Assistant. Your callback will be called when the entities are first loaded and on every change to the state of any of the entities after that. The callback will be called with a single object that contains the entities keyed by entity_id.
The function subscribeEntities
will return a promise that resolves to an unsubscribe function.
import { subscribeEntities } from 'home-assistant-js-websocket';
// conn is the connection from earlier.
subscribeEntities(conn, entities => console.log('New entities!', entities));
You can subscribe to the config of Home Assistant. Config can change when either a component gets loaded or a new service gets registered.
The function subscribeConfig
will return a promise that resolves to an unsubscribe function.
import { subscribeConfig } from 'home-assistant-js-websocket';
// conn is the connection from earlier.
subscribeConfig(conn, config => console.log('New config!', config));
A few helper methods are included to help display the returned entities.
Returns an object with only the entities referenced by group
.
Split entities
into the groups that are contained in entities
and a collection of entities that do not belong to a group. Groups will be returned sorted by order.
{
groups: [
{ entity_id: 'group.example_1', state: … },
{ entity_id: 'group.example_2', state: … },
],
ungrouped: {
'sensor.temperature': { entity_id: … },
'sensor.humidity': { entity_id: … },
}
}
Returns an object containing all the entities from entities
that are needed to render this view.
Returns an ordered list of available views in entities
.
Returns the domain of entityId
.
extractDomain('light.kitchen') # 'light'
Returns the object id of entityId
.
extractObjectId('light.kitchen') # 'kitchen'
conn.getStates()
Get the state of all entities. Returns a promise that will resolve to the result of querying the server for all the states.
conn.getServices()
Get all available services. Returns a promise that will resolve to the result of querying the server for all the services.
conn.getPanels()
Get the Home Assistant panel config. Returns a promise that will resolve to the result of querying the server for all the panels config.
conn.getConfig()
Get the Home Assistant server config. Returns a promise that will resolve to the result of querying the server for all the config.
conn.callService(domain, service[, serviceData])
Call a service within Home Assistant. Returns a promise that will resolve when the service has been called successfully.
conn.subscribeEvents(eventCallback[, eventType])
Subscribe to all or specific events on the Home Assistant bus. Calls eventCallback
for each event that gets received.
Returns a promise that will resolve to a function that will cancel the subscription once called.
conn.addEventListener(eventType, listener)
Listen for events on the connection. See docs.
To use this package in NodeJS, install the ws package and make it available as WebSocket
on the global
object before importing this package.
const WebSocket = require('ws');
global.WebSocket = WebSocket;
const HAWS = require("home-assistant-js-websocket");
const getWsUrl = haUrl => `ws://${haUrl}/api/websocket`;
HAWS.createConnection(getWsUrl('localhost:8123')).then(conn => {
HAWS.subscribeEntities(conn, logEntities);
});
function logEntities(entities) {
Object.keys(entities).forEach(key => console.log(`${key}: ${entities[key].state}`));
console.log('')
}
FAQs
Home Assistant websocket client
The npm package home-assistant-js-websocket receives a total of 11,475 weekly downloads. As such, home-assistant-js-websocket popularity was classified as popular.
We found that home-assistant-js-websocket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.