Skip to main content
Version: 8.2.2

Applet JS SDK

Applet JS SDK provides the device's native features and functionalities with a unified API for all supported platforms. This SDK is only usable inside signageOS applets and allows you to create lightweight applets and deploy them on any device.

import sos from '@signageos/front-applet';

sos.onReady(async () => {
await sos.management.audio.setVolume(75);
});

Getting started

This section refers to the JS SDK API reference and provides detailed information for every function, including rich examples.

To develop an applet using the Applet JS SDK, you need to install our CLI and follow our guide Getting started with Applets.

API Reference

The JS API reference is divided into two main sections:

  • sos - Main object which contains APIs for controlling video playback, streams, or serial ports.
  • sos.management - This section contains management APIs for controlling the device's features like audio, network, Wi-Fi, etc.

You can also check our public examples on GitHub