
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@tizentv/webide-common-tizentv
Advanced tools
Common APIs for web IDEs extension development to support Tizen SDK features.
@tizentv/webIDE-common-tizentv package is a common lib project for VScode/Atom extension and Wits, providing build, install, launch web project and certificate manager.
Please note that, In order to use this pacakge, @tizentv/webIDE-common-tizentv is required.
constructor(name, location, id);
init();
buildWidget(profilePath, excludeFiles);
launchOnSimulator(simulatorLocation);
launchOnEmulator(chromeExecPath, isDebug);
launchOnTV(tvIP, chromeExecPath, isDebug);
openProject(projectPath);
constructor(resourcePath) ;
async init();
/*
authorInfo {
keyFileName: '',
authorName: '',
authorPassword: '',
countryInfo: '',
stateInfo: '',
cityInfo: '',
organizationInfo: '',
departmentInfo: '',
emailInfo: ''
}
*/
createCert(authorInfo);
getTizenDeveloperCA();
/*
* privilegeLevel: 'public'/'partner'
*/
getTizenDistributorProfile(privilegeLevel);
usage:
/*
* TizenCertManager downloads certificate file from tizen.org, if using proxy to connect internet, please configure 'http-proxy' and 'https-proxy' in npm config list.
* eg. npm config set http-proxy http://192.168.0.1:8080
* npm config set https-proxy http://192.168.0.1:8080
*/
let tizenCertMgr = new TizenCertManager('D:\resource');
await tizenCertMgr.init();
tizenCertMgr.createCert(authorInfo);
constructor(resourcePath);
async init();
/*
authorInfo {
name : '',
password : '',
country : '',
state : '',
city : '',
organization : '',
department : ''
*/
createAuthorCert(profileName, authorInfo, accessInfo);
/*
distrbutorInfo {
distributorPassword : '',
privilegeLevel : '',
duidList : ['', '', ...]
*/
createDistributorCert(profileName, distrbutorInfo, accessInfo);
usage:
/*
* SamsungCertManager downloads certificate file from tizen.org, if using proxy to connect internet, please configure 'http-proxy' and 'https-proxy' in npm config list.
* eg. npm config set http-proxy http://192.168.0.1:8080
* npm config set https-proxy http://192.168.0.1:8080
*/
let samsungCertMgr = new SamsungCertManager('D:\resource');
await samsungCertMgr.init();
samsungCertMgr.createAuthorCert(authorInfo);
samsungCertMgr.createDistributorCert(profileName, distrbutorInfo, accessInfo);
constructor(resourcePath);
/*
authorProfile{
authorCA: '',
authorCertPath: '',
authorPassword: ''
}
distributorProfile{
distributorCA: '',
distributorCertPath: '',
distributorPassword: ''
}
*/
registerProfile(profileName, authorProfile, distributorProfile);
setActivateProfile(profileName);
removeProfile(profileName);
modifyProfile(profileName, itemType, certpath, password);
isProfileExist(profileName);
listProfile();
getProfileKeys(profileName);
getProfileItems(profileName);
usage:
let profileMgr = new ProfileManager(common.resourcePath);
tizenAuthorProfile = {
authorCA: tizenCertMgr.getTizenDeveloperCA(),
authorCertPath: authorCertPath,
authorPassword: authorPassword
};
tizenDistributorProfile = tizenCertMgr.getTizenDistributorProfile('public');
profileMgr.registerProfile('name', tizenAuthorProfile, tizenDistributorProfile);
FAQs
Common APIs for web IDEs extension development to support Tizen SDK features.
We found that @tizentv/webide-common-tizentv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.