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.
list()
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);
});
}
);