File: examples/react/src/index.js

Recommend this page to a friend!
  Classes of Arturs Sosins   Countly Web SDK   examples/react/src/index.js   Download  
File: examples/react/src/index.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Countly Web SDK
Track site accesses and errors the Countly API
Author: By
Last change: new example script (#453)
Date: 3 months ago
Size: 917 bytes
 

Contents

Class file image Download
import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App-WithEffect'; import * as serviceWorker from './serviceWorker'; import Countly from 'countly-sdk-web'; //Exposing Countly to the DOM as a global variable //Usecase - Heatmaps window.Countly = Countly; Countly.init({ app_key: 'YOUR_APP_KEY', url: 'YOUR_SERVER_URL', debug: true }); Countly.q.push(['track_sessions']); Countly.q.push(['track_scrolls']); Countly.q.push(['track_clicks']); Countly.q.push(['track_links']); Countly.q.push(["track_errors"]); ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById('root') ); // If you want your app to work offline and load faster, you can change // unregister() to register() below. Note this comes with some pitfalls. // Learn more about service workers: https://bit.ly/CRA-PWA serviceWorker.unregister();