Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

thinlinc

soichih20ISC1.0.9

thinlinc configuration manipulation tools

readme

  • isInstalled

Returns cb(null, true) if thinlinc is installed.

thinlinc.isInstalled(function(err, installed) {
    if(err) throw err;
    if(installed) console.log("installed");
    else console.log("not installed");
});
  • getConfig

Get configuration parameter for ThinLinc

thinlinc.getConfig("AUTHENTICATION_METHOD", function(err, value) {
    if(err) throw err;
    console.log(value);
});