Installation
Setup
npm install @tiun/sdkpnpm add @tiun/sdkyarn add @tiun/sdkConfiguration
import { tiun } from '@tiun/sdk';
tiun.init({
snippetId: 'YOUR_SNIPPET_ID',
language: 'en', // 'en' | 'de' | 'fr'
});Use without a bundler
<script type="module">
import { tiun } from 'https://unpkg.com/@tiun/sdk/tiun.js';
tiun.init({
snippetId: 'YOUR_SNIPPET_ID',
language: 'en', // 'en' | 'de' | 'fr'
});
</script>Last updated
Was this helpful?

