Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 751 Bytes

APPS.md

File metadata and controls

38 lines (24 loc) · 751 Bytes

APPS:

The apps object provides methods to facilitate interaction with applications installed on the Signal K server.

i.e. /signalk/v1/apps

SignalKClient: Class for interacting with Signal K server

api: class for interacting with Signal K HTTP API

stream: class for interacting with Signal K STREAM API

Follow the links for the relevant documentation.


Methods

  • list()

Methods

list()

Returns the list of applications installed on the Signal K server.

this.sk.apps.list().subscribe( 
    appsList=> {
        appsList.forEach( app=> {
            console.log(app.name);
        });
    }
);