All Projects → intel → Iot Js Api

intel / Iot Js Api

Licence: apache-2.0
IoT JavaScript API specifications and test suites

Programming Languages

javascript
184084 projects - #8 most used programming language

IoT Web APIs

Introduction

The following JavaScript APIs are aimed for handling Internet of Things (IoT) applications on a given device:

Since implementations of these APIs exist also on constrained hardware, they might not support the latest ECMAScript versions. However, implementations should support at least ECMAScript 5.1. Examples are limited to ECMAScript 5.1 with the exception of using Promises.

Structures

The following structures SHOULD be implemented in a constrained environment:

Promises

The API uses Promises. In constrained implementations, at least the following Promise methods MUST be implemented:

Buffer

Buffer is a node.js API to read and write binary data accurately from JavaScript. This API supports a subset that will be expanded as needed:

Events

The API uses Node.js-style events. In constrained implementations, at least the following subset of the EventEmitter interface MUST be supported:

Note that in order to make sure only one entity responds to a request, server request handling is done with registering callbacks at the serving objects (end points), rather than using events. Also, when subscribing to notifications requires options or filters, callbacks are used instead of events.

In the future events may be replaced by Observables with signal semantics.

Error handling

Errors are exposed via onerror events and Promise rejections, using augmented instances of a minimal subset of Error objects with added properties.

The Error object MUST contain at least the following properties:

Property Type Optional Default value Represents
name string no "Error" The standard name of the error
message string yes "" The error reason

The following error names may be used by all APIs:

  • SecurityError for lack of permission or invalid access.
  • NotSupportedError for features not implemented.
  • SyntaxError for broken JavaScript and eval errors. Use it sparingly.
  • TypeError for invalid types, parameters, etc.
  • RangeError for parameters out of permitted range.
  • TimeoutError for timeouts.
  • NetworkError for generic connection or protocol related errors.
  • SystemError for generic platform errors, including reference errors.

Further errors may be defined in specific APIs.

Examples:

var error = new SecurityError("No permissions");

if ((error instanceof Error) && (error instanceof SecurityError)) {  // true
  console.log(error.name);  // "SecurityError"
  console.log(error.message);  // "No permissions"
}

Testing

A test runner is provided in this repository. It is designed to launch a series of tests for each API specified here, each test in its own process. test-runner.md provides more details on launching tests.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].