adaptersio
TypeScript icon, indicating that this package has built-in type declarations

0.9.2 • Public • Published

Adapters.IO Build Status

What is Adapters.IO

Adapters.IO is a framework to handle smart home systems with a single codebase. The goal is to have adapters for different systems. Currently there is support for Alexa and Actions on Google (Google Home). The framework is flexible, to support different authentication providers, different databases and idfferent Iothub's. Currently there are built-in classes for LoginWithAmazon, Azure IotHub and AWS DynamoDB, but it is very easy to implement your own interfaces to support any other database, auth or iothub.

Main features

  • Support for Alexa Smart Home
  • Support for Actions on Google Smarthome agent
  • Support for hosting at AWS lambda
  • Built-in class to use Azure IotHub
  • Built-in class to use AWS DynamoDB
  • Built-in class to use Login With Amazon
  • Interfaces to implement your own services
  • Configurable device traits

Main focus

  • Simplicity: Just choose your smart home system, database, auth and iothub solution and it will work out of the box.

  • Flexibility: If you want to use your own service (auth, database, etc.) just implement the interface.

Usage example

npm install --save adaptersio

This is a basic example, for Alexa integration, using AWS DynamoDB and Azure IotHub, and hosting as AWS lambda function.

import {
  Adaptersio,
  Auth,
  Database,
  IotHub,
  AdaptersioConfig
} from "adaptersio";

exports.handler = function(event, context) {
  const config: AdaptersioConfig = {
    adapter: "alexa",
    auth: new Auth.LoginWithAmazon(),
    iotHub: new IotHub.AzureIotHub('connection-string'),
    database: new Database.AWSDynamoDB('dynamodb-table-name'),
    deviceTraits: ["on-off"]
  };
  const adaptersio = new Adaptersio(config);
  adaptersio.handleAwsRequest(event, context);
};

Getting started with Adapters.IO

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.9.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.9.2
    1
  • 0.9.1
    0

Package Sidebar

Install

npm i adaptersio

Weekly Downloads

1

Version

0.9.2

License

Apache-2.0

Unpacked Size

104 kB

Total Files

41

Last publish

Collaborators

  • jjoe64