BU Analytics plugin for Javascript and Typescript compatible with browsers and NodeJS.
Please visit our BU Analytics website for more information.
To install the plugin execute the NPM command in your project environment.
npm i --save @bu-analytics/plugin
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()
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()
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()
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')
You can use the convenience method to quickly add a document to a collection which will be created and uploaded automatically.
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.
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'
])
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'] = ..
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
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.
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
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'