0.3.2 • Published 7 years ago

@bu-analytics/plugin v0.3.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Javascript Plugin

BU Analytics plugin for Javascript and Typescript compatible with browsers and NodeJS.

Please visit our BU Analytics website for more information.

Installation

To install the plugin execute the NPM command in your project environment.

npm i --save @bu-analytics/plugin

Browsers

First make sure to include the library in your html header.

<script src="node_modules/bu-analytics/dist/browser.min.js"></script>

The library will then be exported under the BU variable for use.

//Authenticate
BU.API.instance.auth = new BU.AccessKey('5950ce44326970000ca959be', 'de35d3ec10d97667a1fa1d32b07133e3908923d4bd8c7258e384b5e5dfb91ec0')

//Create document
var userDoc = new BU.Document()

Typescript

For Typescript import and consume the library as shown.

import { API, AccessKey, Document } from '@bu-analytics/plugin'

//Authenticate
API.instance.auth = new AccessKey('5950ce44326970000ca959be', 'de35d3ec10d97667a1fa1d32b07133e3908923d4bd8c7258e384b5e5dfb91ec0')

//Create document
const userDoc = new Document()

Javascript

For Javascript require and consume the library as shown.

const { API, AccessKey, Document } = require('@bu-analytics/plugin')

//Authenticate
API.instance.auth = new AccessKey('5950ce44326970000ca959be', 'de35d3ec10d97667a1fa1d32b07133e3908923d4bd8c7258e384b5e5dfb91ec0')

//Create document
const userDoc = new Document()

Authentication

To authenticate with the backend you must first create an access key through the web management interface. Then pass these details into the api singleton instance.

API.instance.auth = new AccessKey('5950ce44326970000ca959be', 'de35d3ec10d97667a1fa1d32b07133e3908923d4bd8c7258e384b5e5dfb91ec0')

Getting Started

You can use the convenience method to quickly add a document to a collection which will be created if needed.

CollectionManager.instance.push('Users', {
    userId: ..,
    name: ..,
    age: ..,
    gender: ..,
    device: {
        type: ..,
        name: ..,
        model: ..
    }
})

If you would like to manage your own collections and documents please see below.

Creating Collections

We must then create the collections that we would like to use throughout the application. This can be done at any point and as many times as needed however collections will not be overwritten if created with a duplicate names.

CollectionManager.instance.create([
    'Users',
    'Sessions',
    'Clicks'
])

Creating a Document

We can create a document using a dictionary literal that allows for as many nested values as needed. Documents support nested dictionaries, arrays and will encode literal data types when uploading to the backend server.

const userDoc = new Document({
    userId: ..,
    name: ..,
    age: ..,
    gender: ..,
    device: {
        type: ..,
        name: ..,
        model: ..
    }
})

You can also create documents through the add method or can access the raw dictionary object through the contents property.

const userDoc = new Document()

userDoc.push('userId', ..)
userDoc.push('name', ..)

userDoc.contents['age'] = ..
userDoc.contents['gender'] = ..

Adding a Document to Collection

You can then add one or more documents to a collection through the collection manager.

CollectionManager.instance.collections['Users'].push(userDoc)
CollectionManager.instance.collections['Users'].push([ userDoc1, userDoc2, userDoc3 ])

Collections will automatically push all documents to the backend server every two seconds if not empty. You can also manually initiate an upload either on all or a specific collection.

CollectionManager.instance.uploadAll()
CollectionManager.instance.collections['Users'].upload()

You can also use the interval property to configure how often collections are uploaded in milliseconds. The default is 2000 milliseconds and setting it to 0 will disable automatic uploads.

CollectionManager.instance.interval = 4000

Error Handling

You can subscribe to actions in the collection manager to notify you when collections upload successfully or return errors.

CollectionManager.instance.error = (collection, errorCode) => {
    //...
}
 
CollectionManager.instance.success = (collection, successCount) => {
    //...
}

You can also provide error and success actions to an individual collection using the upload method.

Unique Identifiers

You can use our backend to generate unique identifiers for use inside documents. Setup the cache at startup specifying how many identifiers you'd like to hold.

ID.instance.start(200)

Once the cache has been marked as ready you can generate identifiers at any time.

if (ID.instance.isReady){
    userDoc.push('userId', ID.instance.generate())
}

You can modify the refresh frequency or size of the cache depending on how many identifiers you require. GUIDs will be generated as a backup should the cache become empty.

ID.instance.interval = 4000
ID.instance.size = 100

Advanced

The hostname defaults to the BU Analytics server although we can change this if necessary.

API.instance.url = 'http://192.168.0.x'
API.instance.path = '/api/v1'
0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago