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 🙏

© 2024 – Pkg Stats / Ryan Hefner

has-node

v0.4.14

Published

Homekit Accessory Server

Downloads

6

Readme

HAS

Homekit Accessory Server

npm version

HAS is a Homekit accessory server written in NodeJS which lets you create your own Homekit-enabled accessories on your computer, Raspberry Pi or everything else which can run NodeJS.

It provides you a rich and simple API to create your own servers, accessories, services and characteristic.

This project is based on Homekit accessory protocol(HAP) specification which you can find it here(Requires Apple developer account).

Installation

npm install has-node 

Sample

import * as HAS from 'has-node';

let config = new HAS.Config('NodeJS Fan', '82:E6:B6:63:BC:2C', HAS.categories.fan, __dirname + '/fan.json', 8091, '200-20-200');

let server = new HAS.Server(config);

//Fan
let fan = new HAS.Accessory(1);

let fanIdentify = HAS.predefined.Identify(1, undefined, (value, callback) => {
        console.log('Fan Identify', value);
        callback(HAS.statusCodes.OK);
    }),
    fanManufacturer = HAS.predefined.Manufacturer(2, 'Hamyar'),
    fanModel = HAS.predefined.Model(3, 'Model2017'),
    fanName = HAS.predefined.Name(4, 'Fan'),
    fanSerialNumber = HAS.predefined.SerialNumber(5, 'ABCDEFGHIJ'),
    fanFirmwareVersion = HAS.predefined.FirmwareRevision(6, '1.0.0');
fan.addServices(HAS.predefined.AccessoryInformation(1, [fanIdentify, fanManufacturer, fanModel, fanName, fanSerialNumber, fanFirmwareVersion]));


let on = HAS.predefined.On(1, false, (value, callback) => {
    console.log('Fan Status', value);
    callback(HAS.statusCodes.OK);
});
fan.addServices(HAS.predefined.Fan(2, [on]));

server.addAccessory(fan);

//server.onIdentify will be used only when server is not paired, If server is paired identify.onWrite will be used
server.onIdentify = fanIdentify.onWrite;

//Starts the server
server.startServer();

Check out samples folder for more samples.

Plugins

API

Categories

Homekit Accessory Categories

HAS.catogories = {
   other: 1,
   bridge: 2,
   fan: 3,
   garage: 4,
   lightBulb: 5,
   doorLock: 6,
   outlet: 7,
   switch: 8,
   thermostat: 9,
   sensor: 10,
   securitySystem: 11,
   door: 12,
   window: 13,
   windowCovering: 14,
   programmableSwitch: 15,
   rangeExtender: 16,
   IPCamera: 17,
   videoDoorBell: 18,
   airPurifier: 19,
   heater: 20,
   airconditioner: 21,
   humidifer: 22,
   dehumidifier: 23
};

Status Codes

HAP Status Codes

HAS.statusCodes = {
    OK: 0,
    insufficientPrivilege: -70401,
    communicationError: -70402,
    busy: -70403,
    isReadonly: -70404,
    isWriteonly: -70405,
    notificationIsNotSupported: -70406,
    outOfResource: -70407,
    timedout: -70408,
    notFound: -70409,
    invalidValue: -70410,
    insufficientAuthoriation: -70411
};

Configuration

let config = new HAS.Config(name, deviceID, category, configDir, TCPPort, setupCode);

Parameters:

  • name: (string) Name of accessory.

  • deviceID: (string) ID of accessory.

  • category: (HAS.categories) Category of accessory.

  • configDir: (string) Path of config file. Will be created automatically if does not exists.

  • TCPPort: (number) Port of TCP server.

  • setupCode (string) Accessory setup code(User will use this code for pairing).

Methods:

  • config.getHASID(UUID): number: Maps UUID to persistent unique integer.

  • config.resetHASID(UUID): Resets mapped integer for an UUID.

Server

let server = new HAS.Server(config);

Parameters:

  • config: (HAS.Config) Config object.

Methods:

  • server.startServer(): Starts the server.

  • server.stopServer(callback?): Stops the server.

  • server.addAccessory(accessory): Adds an accessory to server.

  • server.removeAccessory(accessoryID): Removes an accessory from server.

Properties:

  • server.onIdentify: ((value: any, callback: (status: HAS.statusCodes) => void) => void) This function will be used to identify the server.

Characteristic

let characteristic = new HAS.Characteristic(ID, type, valueFormat, isHidden, hasNotifications, hasValue, isReadonly, additionalAuthorization, valueUnit, description, minValue, maxValue, stepValue, maxLength, validValues, validRangeValues);

Parameters:

  • ID: (number) ID of characteristic. Should be unique at service level.

  • type: (string) Type of characteristic. Read HAP specification for more information.

  • valueFormat: ('bool' | 'uint8' | 'uint16' | 'uint32' | 'int' | 'float' | 'string' | 'tlv8' | 'data') Data type of characteristic.

  • isHidden: (boolean?) Whether or not this is a hidden characteristic.

  • hasNotifications: (boolean?) Whether or not this characteristic supports notifications.

  • hasValue: (boolean?) Whether or not this a write-only characteristic.

  • isReadonly: (boolean?) Whether or not this a readonly characteristic.

  • additionalAuthorization: (boolean?) Whether or not this characteristic needs additional authorization.

  • valueUnit: (('celsius' | 'percentage' | 'arcdegrees' | 'lux' | 'seconds')?) Characteristic Value Unit

  • description: (string?) Description of this characteristic.

  • minValue: (number?) Characteristic Min. Value

  • maxValue: (number?) Characteristic Max. Value

  • stepValue: (number?) Characteristic Step Value (characteristic.value % characteristic.stepValue should be 0.)

  • maxLength: (number?) Max. length of this characteristic(Only if characteristic is string or buffer.)

  • validValues: (number[]?) An array of valid values.

  • validRangeValues: (number[]?) characteristic.value >= characteristic.validRangeValues[0] && characteristic.value <= characteristic.validRangeValues[1] should be true.

Methods:

  • characteristic.setValue(value): Boolean Sets the value of characteristic and returns result as boolean.

  • characteristic.getValue(parse: Boolean = false) Returns value of characteristic.

Properties:

  • characteristic.onWrite: ((value: any, callback: (status: HAS.statusCodes) => void, authData?: Buffer) => void) Set this function to handle value write requests.

Service

let service = new HAS.Service(ID, type, isHidden, isPrimary, linkedServices);

Parameters:

  • ID: (number) ID of service. Should be unique at accessory level.

  • type: (string) Type of service. Read HAP specification for more information.

  • isHidden: (boolean) Whether or not this a hidden service.

  • isPrimary: (boolean) Whether or not this a primary service. Each accessory can not have more than one primary service.

  • linkedServices: (number[]) Array of IDs of linked services. Linked services should be already added to accessory.

Methods:

  • service.addCharacteristic(characteristic) Adds a characteristic to this service.

  • service.addCharacteristics(...characteristics) Adds a group of characteristics to this service.

Accessory

let accessory = new HAS.Accessory(ID);

Parameters:

  • ID: (number) ID of accessory. Should be unique at server level.

Methods:

  • accessory.addService(service) Adds a service to this accessory.

  • accessory.addServices(...services) Adds a group of services to this accessory.

Each accessory needs to have an information service with serviceID = 1.

Predefined

Instead of creating your own services and characteristics, you can use HAS.predefined.

let characteristic = HAS.predefined.characteristicName(ID, value, onWrite);
  • Parameters are described in Characteristic section.
let service = HAS.predefined.serviceName(ID, characteristics, isHidden, isPrimary, linkedServices);
  • Parameters are described in Service section.

You can find predefined items by looking at HAP specification or source code.