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

@smartthings/core-sdk

v8.1.4

Published

JavaScript/TypeScript library for using SmartThings APIs

Downloads

3,762

Readme

SmartThings Core SDK

The SmartThings Core SDK is a wrapper designed to simplify the use of the SmartThings REST API from JavaScript and TypeScript applications. This is the very first release of this SDK and should be considered a work in progress. Changes may still be made that are not backwardly compatible.

Installation

npm install @smartthings/core-sdk

:warning: Note that if you use axios in your project, you must use version 0.28.1 or later.

Importing

NodeJS:

const {SmartThingsClient} = require('@smartthings/core-sdk')

Or ES2015+:

import {SmartThingsClient} from '@smartthings/core-sdk'

Example Usage

For this example, you'll need to create a Personal Access Token (PAT) with at least the r:locations:* scope. Substitute it for YOUR-PAT-HERE in the following code:

const {SmartThingsClient, BearerTokenAuthenticator} = require('@smartthings/core-sdk')
const client = new SmartThingsClient(new BearerTokenAuthenticator('YOUR-PAT-HERE'))

client.locations.list().then(locations => {
    console.log(`Found ${locations.length} locations`)
})

Logging

There is some logging done of requests and responses made to the API. The default logger does nothing but you can pass your own. Logging is done via a generic interface so you can use whatever logger you want in your application.

First, write an implementation of the Logger interface defined in logger.ts which proxies to your logger. For example:

import { Logger as WinstonLogger } from 'winston'
import { Logger } from '@smartthings/core-sdk'


export class WinstonLoggerProxy implements Logger {
	proxy: WinstonLogger
	level: string

	constructor(winstonLogger) {
		this.level = proxy.level
	}

	trace(message: any, ...args: any[]): void {
		// Winston doesn't have a "trace" level but it has a "silly" level in the same place.
		proxy.silly(message, args)
	}

	debug(message: any, ...args: any[]): void {
		proxy.debug(message, args)
	}

	info(message: any, ...args: any[]): void {
		proxy.info(message, args)
	}

	...

	isTraceEnabled(): boolean {
		return proxy.isSillyEnabled()
	}

	...
}

Then, when you create your SmartThingsClient, pass this in via the config parameter.

const config = {
	logger: new WinstonLoggerProxy(myWinstonLoggerInstance)
}
const client = new SmartThingsClient(new BearerTokenAuthenticator('{YOUR-PAT-TOKEN}'), config)

Reference

Authenticators

This SDK supports multiple ways of authenticating with the SmartThings platform. The currently available authenticators are:

  • BearerTokenAuthenticator -- Authenticator that is instantiated with any valid bearer token. This is the authenticator you would use with a PAT (Personal Access) Token.

  • RefreshTokenAuthenticator -- Authenticator that is instantiated with a bearer token and a RefreshTokenStore that provides methods for retrieving and storing access and refresh tokens. When this authenticator is used the API will automatically refresh expired access tokens, save the new tokens, and retry the original request.

  • SequentialRefreshTokenAuthenticator

Endpoints

  • apps -- A SmartApp can be an AWS lambda function or WebHook endpoint. Like to code interface here, link to wiki page description here

  • capabilities - Operations to read standard Capability definitions as well as create and modify custom Capabilities. Link to code interface here, link to wiki page here.

  • deviceProfiles - A Device Profile contains the Components, Capabilities, and metadata (ID, name, ownership, etc.) that define a SmartThings Device. Link to code interface here, link to wiki page here

  • devices - Operations to access, control, create, update, and delete Devices. Like to code interface here, link to wiki page here

  • history - Operations to query event history. Link to code interface here.

  • installedApps - Apps are installed by users. Link to code interface here, link to wiki page description here

  • locations - Locations can include Hubs, Devices, and Automations. Link to code interface here, link to wiki page description here

  • modes - Operations to change the current Mode of a Location. Link to code interface here, link to wiki page description here

  • notifications - Operations to send push notifications to SmartThings mobile app. Link to code interface here, link to wiki page description here

  • organizations - Operations to list and get Organizations. Link to code interface here. Future feature. Not yet supported.

  • presentation - Operations to query and create Device Configurations and Presentations. Link to code interface here.

  • rooms - Operations related to Rooms, a grouping of Devices within a Location. Link to code interface here, link to wiki page description here

  • rules - Operations for working with Rules. Rules allow you to create Automations that can operate on SmartThings connected Devices. Link to code interface here, link to wiki page description here

  • scenes - Operations to list and execute Scenes. Currently this endpoint does not support creating or updating Scenes. Link to code interface here, link to wiki page description here

  • schedules - Operations for scheduling future executions for use in SmartApps. Link to code interface here, link to wiki page description here

  • schema - Operations for ST Schema connectors and installed instances, along with operations to list the Devices owned by each installed instance. Link to code interface here, link to wiki page description here

  • services - Operations to query for and subscribe to location service data, currently consisting of current weather conditions, weather forecast, and air quality data. Link to code interface here, link to wiki page description here

  • subscriptions - Operations for subscribing to events, for use in SmartApps and API Access apps. Link to code interface here, link to wiki page description here