npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

trane-thermostat-api

v1.0.5

Published

Node.js TypeScript library for controlling Trane thermostats

Downloads

499

Readme

Trane Thermostat API

A TypeScript/Node.js library for controlling Trane thermostats via the Trane Home API.

Overview

This library provides:

  • Full TypeScript support with comprehensive type definitions
  • Homebridge-optimized architecture for seamless HomeKit integration
  • Modern async/await patterns for all API interactions
  • Multi-zone support with individual thermostat zone control
  • RoomIQ sensor integration for enhanced temperature monitoring
  • Comprehensive error handling with structured error hierarchy

Supported Devices

  • Trane Thermostats: XL850, XL950, XL1050, XL824, and other Trane Home compatible models

Features

Thermostat Control

  • System mode control (Auto, Heat, Cool, Off)
  • Temperature setpoint management with deadband validation
  • Fan speed and mode control
  • Emergency heat support
  • Outdoor temperature monitoring
  • Variable speed compressor monitoring

Zone Management

  • Individual zone temperature control
  • Zone-specific mode settings
  • Hold/schedule management
  • Preset mode support (Home, Away, Sleep)
  • RoomIQ sensor selection and monitoring

Humidity & Air Quality

  • Humidity monitoring and control
  • Dehumidify/humidify setpoint management
  • Air cleaner mode control (Auto, Quick, Allergy)

Advanced Features

  • ETag-based caching for efficient API usage
  • Automatic session management and re-authentication
  • Rate-limited login attempts to prevent account lockout
  • Comprehensive device capability detection

Installation

npm install trane-thermostat-api

Quick Start

import { TraneClient } from 'trane-thermostat-api';

const client = new TraneClient({
  username: '[email protected]',
  password: 'your-password'
});

// Authenticate and discover devices
await client.login();
const thermostats = await client.getThermostats();

// Control thermostat
const thermostat = thermostats[0];
await thermostat.setFanMode('auto');

// Control zones
const zone = thermostat.zones[0];
await zone.setTemperatures({
  heatingSetpoint: 70,
  coolingSetpoint: 75
});

API Documentation

Core Classes

TraneClient

Main HTTP client for API communication and device discovery.

TraneThermostat

Represents a physical thermostat with full feature detection and control.

TraneZone

Represents a zone/room within a thermostat with independent temperature control.

TraneSensor

RoomIQ temperature and humidity sensor with battery monitoring.

Homebridge Integration

This library is designed specifically for Homebridge plugins. See the included platform implementation for complete HomeKit integration examples.

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

# Run linting
npm run lint

# Watch mode for development
npm run dev

Testing

The test suite includes:

  • Unit tests for all core classes
  • Mock HTTP responses for API testing
  • Validation logic testing
  • Error handling scenarios
npm run test:coverage

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes with tests
  4. Run the test suite
  5. Submit a pull request

License

MIT License - see LICENSE file for details.