Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tizen-tv-webapis

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tizen-tv-webapis

This package is for supporting Samsung TV Product API as commonjs style

  • 2.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

tizen-tv-webapis

tizen-tv-webapis package is for supporting Samsung TV Product API as commonjs style. Now we are supporting it for Typescript developers. Please note that, In order to use this pacakge, @types/tizen-tv-webapis is required.

Supported APIs

How to use

  • Common js
npm install tizen-tv-webapis
<!-- html -->
<script type="text/javascript" src="$WEBAPIS/webapis/webapis.js"></script>
// js
const avinfo = require('tizen-tv-webapis');
const { getVersion, getDolbyDigitalCompMode, isHdrTvSupport } = avinfo;

getVersion();
  • Typescript
npm install tizen-tv-webapis
npm install @types/tizen-tv-webapis
<!-- html -->
<script type="text/javascript" src="$WEBAPIS/webapis/webapis.js"></script>
// ts
import { avinfo } from 'tizen-tv-webapis';
const { getVersion, getDolbyDigitalCompMode, isHdrTvSupport } = avinfo;

getVersion();

Enum usage

v1.0.0

Modules were separated. Enums must have been imported from the each modules.

import {
    setScreenSaver,
    AppCommonScreenSaverState
} from 'tizen-tv-webapis/appcommon';

setScreenSaver(AppCommonScreenSaverState.SCREEN_SAVER_ON);

v2.0.0

Modules have been integrated in index.d.ts. Enums can be simply imported from the 'tizen-tv-webapis'.

import { appcommon, AppCommonScreenSaverState } from 'tizen-tv-webapis';
const { setScreenSaver } = appcommon;

setScreenSaver(AppCommonScreenSaverState.SCREEN_SAVER_ON);

Samples

We offer two samples for common js and typescript.

Common js (webpack + babel-loader)

  • Path : /samples/commonjs
  • How to Run
  1. Move to the path
  2. npm install
  3. npm run wits-init (To use WITs Live reload feature)
  4. npm run start

typescript (webpack + ts-loader)

  • Path : /samples/typescript
  • How to Run
  1. Move to the path
  2. npm install
  3. npm run wits-init (To use WITs Live reload feature)
  4. npm run start

FAQs

Package last updated on 27 Jan 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc