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

yale-proxy

v1.0.0

Published

Proxy for the undocumented Yale Smart Hub API

Downloads

3

Readme

yale-proxy

npm version

Promise based package, which acts as a proxy to the undocumented Yale Smart Hub API. I created this to be able to integrate the Yale doorman and other components into my custom Home Operating System - Anorak.

Feel free to use this in your project, but be warned, it may (most likeley) fail at any time. Partly or fully.

Happy hacking!

Installing

Using npm:

$ npm install yale-proxy

Using bower:

$ bower install yale-proxy

Using yarn:

$ yarn add yale-proxy

Example

const yale = require(`yale-proxy`)

const token = yale.auth.getAccessToken(username, password)
token.then(function(result) {
    res.json(result)
})

Features

auth.getAccessToken

auth.getAccessToken will retrieve a token you will need to do any get or posts to the system. It takes two arguments, your username and password.

auth.getAccessToken('username', 'password');

The function will return a promis for an access token, as well as the refresh token in a JSON format.

auth.refreshAccessToken

auth.refreshAccessToken will refresh the access token using the refresh access token you get by calling auth.getAccessToken. It takes one argument, the refresh token.

auth.refreshAccessToken(refresh_token);

The function will return a promis for an access token, as well as the refresh token in a JSON format.

alarm.setAlarmStatus(access_token, alarmstate)

alarm.getAlarmStatus

alarm.getAlarmStatus will retrieve the status of the alarm system, it returns the response the API returns.

alarm.getAlarmStatus('access_token');

As the example shows you will need to pass the access token you get from the auth.getAccessToken into the getAlarmStatus method. The module is promise based, but do not yet support chain.

alarm.setAlarmStatus

alarm.setAlarmState will set the status of the alarm system. It takes two parameters:

  • Access Token - This is retrieved using auth.getAccessToken
  • Mode - The mode can either be 'arm', 'home' or 'disarm'
alarm.setAlarmState('access_token', 'arm');

As the example shows you will need to pass the token into the setAlarmStatus method call. The module is promise based, but do not yet support chain.

device.getDeviceStatus

device.getDeviceStatus will get the status on all devices as an JSON array. It takes one parameters:

  • Access Token - This is retrieved using auth.getAccessToken
device.getDeviceStatus(access_token);

As the example shows you will need to pass the token into the setAlarmStatus method call. The module is promise based, but do not yet support chain.

TODO

  • Add more documentation to readme.md
  • Add additional endpoints