1.0.0 • Published 9 years ago

node-hacontrol v1.0.0

Weekly downloads
4
License
Apache 2.0
Repository
github
Last release
9 years ago

node-hacontrol

A simple module for checking if a service is active in HAControl.

Build Status

Where can I find the releases?

You can install it using npm. Exampel package.json file:

{
  "dependencies": {
    "node-hacontrol": "1.0.0"
  }
}

Usage:

var HAControl = require('nodejs-hacontrol');
var hacontrol = new HAControl('./localHA', '/srv/globalHA');
hacontrol.initialize();
...

var isActive = hacontrol.isActive();