ITSLanguage JavaScript SDK
Documentation
Read the GitHub Pages website
Installing
To add the ITSLanguage SDK to your project:
npm install itslanguage --save
Usage
Simply require itslanguage
in your project.
const itslanguage = require('itslanguage');
The ITSLanguage SDK will be included in your build. For example using browserify
Every component of the SDK can be accessed either directly as a property of the itslanguage
module or directly using require
.
const audioSdk = require('itslanguage/audio-sdk');
console.log(itslanguage.audioSdk === audioSdk);
For more usage examples, see the
ITSLanguage JavaScript SDK Examples.