Socket
Socket
Sign inDemoInstall

akio-browser

Package Overview
Dependencies
28
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    akio-browser

The Akio JavaScript SDK is used to collect web analytics for decentralized applications.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Akio JavaScript SDK

The Akio JavaScript SDK is used to collect web analytics for decentralized applications.

Installation

This library is available as a package on NPM. To add to your project, run:

yarn add akio-browser

Usage

Once the package is installed, import it like a normal Node.js module.

import Akio from 'akio-browser';

The Akio object contains 3 main methods:

Init

Initialize the Akio instance by providing your token. You can get a token by creating an account on Akio Insights.

const akio = Akio.init({
  token: 'your-token-here',
});

Other init options:

OptionValuesDescription
verbosetrue / falseSet to true to enable verbose logging.
debugtrue / falseSet to true to enable debug logging.
persistence'cookie' / 'localStorage'Specify the preferred storage medium for tracking sessions.

Identify

To identify a specific user on your application, provide a unique userId for each user. You may also pass a user's wallet address as userAddress to automatically join with on-chain data on Akio Insights.

Additional properties supplied to the identify method will be saved on the user object and viewable on a user's profile.

akio.identify({
  userId: 'user@example.com',
  userAddress: '0xdf215d5794bd2fb6eab88d05aabcbc8766ef4480',
});

Track

To track an event, simply provide an event name to the track call. Browser information is automatically logged with each event so the only required argument is the event name.

Additional properties supplied to the track method will be saved and associated with this event. All event properties are viewable on the live view for your app on Akio Insights.

akio.track({
  event: 'Viewed Home Page',
});

Contact

If you have any questions or would like to get early-access to the SDK, contact us at team@akiolabs.com.

FAQs

Last updated on 26 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc