Socket
Socket
Sign inDemoInstall

akio-browser

Package Overview
Dependencies
30
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
12
Maintainers
1
Install size
2.43 MB
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

Getting Started

To get started, import the Akio object from akio-browser like a normal Node.js module.

// Step 1: Import the library.
import Akio from 'akio-browser';

// Step 2: Initialize Akio with your token that you created on Akio Insights.
const akio = await Akio.init({
  token: 'your-token-here',
});

// Step 3: Identify a unique user by passing in a required userId and an optional userAddress.
// If your app has no concept of a userId, you may provide the userAddress for both fields.
// Passing in a userAddress will automatically link your user with on-chain data.
await akio.identify({
  userId: 'user@example.com',
  userAddress: '0xdf215d5794bd2fb6eab88d05aabcbc8766ef4480',
});

// Step 4: Track a web event by passing in the event name.
await akio.track({
  event: 'Viewed Home Page',
});

Options

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 18 Mar 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