Installation and initialization for a browser environment using a Javascript SDK

For Single-Page Applications (React, Angular, Vue, Svelte, etc).

Install our sdk using

npm


npm install luciasdk-t3 

OR

yarn


yarn add luciasdk-t3

Add lucia.js in the root folder with the following:


app.js

import 'lucia.js';

page.js


import LuciaSDK from 'lucia-t3';

LuciaSDK.init({

  baseURL: 'https://api.clickinsights.xyz',

  // Get your API Key from https://ads.clickinsights.xyz
  api_key: 'bb10bb08-a7298818-3265d018-e9a648ae-95371b44-d25e6c77-38069b79-1e4bd263', 

});

For Mutli-Page Application


include the script


<script src=" https://d1b2pxnugd0qwt.cloudfront.net/lucia-t3.min.js"></script>
<script>
  LuciaSDK.init({
    
    baseURL: 'https://api.clickinsights.xyz',
    
    // API Key from https://ads.clickinsights.xyz
    api_key: 'bb10bb08-a7298818-3265d018-e9a648ae-95371b44-d25e6c77-38069b79-1e4bd263', 
  
  });

</script>

Track Specific Events