
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
This is a Node.js client for the Tado smart thermostat web API. It offers a promise-based API.
Please be aware that this client simply mocks the behaviour of the Tado Web-App. This means that it could stop working due to implemented restrictions by Tado at any time.
Before you can access any API methods, you must perform a login, using your Tado username and password:
import Tado from 'node-tado';
let client = new Tado();
client.login('username', 'password').then((success) => {
// use the client now
});
This method handles all API calls. Currently, only GET requests without any parameters are supported – hence this client is only useful for querying data, not for adjusting settings or anything like that.
client.api('/me').then((result) => {
console.log('me', result);
});
There are a few convenience methods:
Shortcut for .api('/me'). Queries data about the logged in user.
Shortcut for .api('/homes/' + homeId).
Shortcut for .api('/homes/' + homeId + '/zones'). Lists available zones.
Shortcut for .api('/homes/' + homeId + '/weather'). Fetches current weather data for the location of the given home.
Shortcut for .api('/homes/' + homeId + '/zones/' + zoneId + '/state'). Fetches current metrics.
FAQs
node.js wrapper for Tado API
We found that node-tado 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.