Analytics

Get to know your users, better.

Analytics reporting is disabled by default in package. You'll need to enable it when using in your app like so:

const { app } = electron
const electrolytic = Electrolytic({
  appKey: '<Your-API-Key>'
})

electrolytic
  .analytics
  .enable(true)
  .use(app)
  .report()

Analytics are also only reported to the server when you call .report() method, not otherwise. So we recommend enabling and calling .report() at app's launch. If enabled, it'll also be called internally whenever there's a new token.

For any issues, suggestions or questions regarding the docs, please use this repo.