@tizentv/tools
This is a tools manager project for tizentv development, providing tools download and usage. Developer can get tools path using tools manager interface.
Please note that, In order to use this pacakge, @tizentv/tools
is required.
Supported APIs
//options: {proxy: ''}
- getToolPath(toolName, [options])
- getSdbPath([options])
- getEncryptorPath([options])
- getTizenCertPath([options])
- getSamsungCertPath([options])
usage:
let sdbPath_1 = await tools.getToolPath('sdb', {proxy: 'http://192.168.0.1:8080'});
let sdbPath_2 = await tools.getToolPath('sdb');
let encryPath = await tools.getEncryptorPath();
let tizenCertPath = await tools.getTizenCertPath();
let samsungCertPath = await tools.getSamsungCertPath();