moveo-one-analytics-js
v1.0.7
Published
Moveo One analytics library for JavaScript applications
Readme
Moveo One Analytics JavaScript SDK
Table of Contents
- Introduction
- Quick Start Guide
- Event Types and Actions
- Prediction API
- Comprehensive Example Usage
- Obtain API Key
- Dashboard Access
- Support
Introduction
Moveo One Analytics is a user cognitive-behavioral analytics tool that provides deep insights into user interactions and behavior patterns. This SDK offers a pure JavaScript implementation that can be seamlessly integrated into any JavaScript environment, from web applications to React components.
Quick Start Guide
Prerequisites
- A valid Moveo One API key
Installation
npm install moveo-one-analytics-js
# or
yarn add moveo-one-analytics-jsLibrary Initialization
import { MoveoOne } from "moveo-one-analytics-js";
// Initialize with your API token
const analytics = MoveoOne.getInstance("<YOUR_API_TOKEN>");Setup
// Enable logging for debugging (optional)
analytics.setLogging(true);
// Set custom flush interval (optional, default: 10 seconds)
analytics.setFlushInterval(5000);Metadata and Additional Metadata
Session Metadata
Session metadata should split sessions by information that influences content or creates visually different variations of the same application. Sessions split by these parameters will be analyzed separately by our UX analyzer.
Session metadata examples:
sessionMetadata.put("test", "a");
sessionMetadata.put("locale", "eng");Additional Metadata
Additional metadata is used for data enrichment and enables specific queries or analysis by the defined split.
Additional metadata examples:
additionalMetadata.put("user_country", "US");
additionalMetadata.put("company", "example_company");
additionalMetadata.put("user_role", "admin"); // or "user", "manager", "viewer"
additionalMetadata.put("acquisition_channel", "organic"); // or "paid", "referral", "direct"
additionalMetadata.put("device_category", "mobile"); // or "desktop", "tablet"
additionalMetadata.put("subscription_plan", "pro"); // or "basic", "enterprise"
additionalMetadata.put("has_purchased", "true"); // or "false"Track Data
Understanding start() Calls and Context
Single Session, Single Start
You do not need multiple start() calls for multiple contexts. The start() method is called only once at the beginning of a session and must be called before any track() or tick() calls.
When to Use Each Tracking Method
Use track() when:
- You want to explicitly specify the event context
- You need to change context between events
- You want to use different context than the one specified in the start method
Use tick() when:
- You're tracking events within the same context
- You want tracking without explicitly defining context
- You want to track events in the same context specified in the start method
Context Definition
- Context represents large, independent parts of the application and serves to divide the app into functional units that can exist independently of each other
- Examples:
onboarding,main_app_flow,checkout_process
Semantic Groups
- Semantic groups are logical units within a context that group related elements
- Depending on the application, this could be a group of elements or an entire screen (most common)
- Examples:
navigation,user_input,content_interaction
Tracking Examples
// Start the session
analytics.start("checkout_flow", {
version: "1.0.0",
environment: "production"
});
// Track an event with explicit context
analytics.track("checkout_flow", {
semanticGroup: "payment",
id: "submit_button",
type: "button",
action: "click",
value: "complete"
});
// Track an event in the same context (using tick)
analytics.tick({
semanticGroup: "navigation",
id: "back_button",
type: "button",
action: "click",
value: "go_back"
});Event Types and Actions
Available Event Types
button- Interactive buttons and controlsinput- Form inputs and text fieldstext- Static text contentimage- Images and media contentlink- Hyperlinks and navigation elementsform- Form containers and submissionscontainer- Content containers and sectionsnavigation- Navigation elements and menus
Available Event Actions
click- User clicks on an elementview- Element comes into viewedit- User modifies input contentsubmit- Form submissionhover- User hovers over an elementscroll- Scrolling interactionsfocus- Element receives focusblur- Element loses focus
Prediction API
The MoveoOne library includes a prediction method that allows you to get real-time predictions from your trained models using the current user's session data.
Latency Tracking
The SDK automatically tracks prediction request latency and sends performance data to the MoveoOne analytics platform. This feature helps monitor model performance and identify optimization opportunities.
Key Features:
- Automatic latency measurement for all prediction requests
- Asynchronous data transmission (doesn't affect prediction response time)
- Tracks both successful predictions and error cases (including timeouts)
- Configurable via
calculateLatency()method
Usage:
// Enable latency tracking (default: true)
moveoOne.calculateLatency(true);
// Disable latency tracking
moveoOne.calculateLatency(false);
// Note: Can only be called after session is started
moveoOne.start("app_context");
moveoOne.calculateLatency(true);Basic Usage
// Make sure to start a session first
moveoOne.start("app_context", {
version: "1.0.0",
environment: "production"
});
// Get prediction from a model
const result = await moveoOne.predict("your-model-id");
if (result.success) {
console.log("Prediction probability:", result.prediction_probability);
console.log("Binary result:", result.prediction_binary);
} else {
console.log("Status:", result.status);
console.log("Message:", result.message);
}Prerequisites
Before using the predict method, ensure:
- Session is started: Call
moveoOne.start()before making predictions - Valid token: The MoveoOne instance must be initialized with a valid API token
- Model access: Your token must have access to the specified model
Method Signature
async predict(modelId): Promise<PredictionResponse>Parameters:
modelId(string, required): The ID of the model to use for prediction
Returns: Promise that resolves to an object
Response Examples
Successful Prediction
{
success: true,
status: "success",
prediction_probability: 0.85,
prediction_binary: true
}Pending Model Loading
{
success: false,
status: "pending",
message: "Model is loading"
}Error Responses
Invalid Model ID
{
success: false,
status: "invalid_model_id",
message: "Model ID is required and must be a non-empty string"
}Not Initialized
{
success: false,
status: "not_initialized",
message: "MoveoOne must be initialized with a valid token before using predict method"
}No Session Started
{
success: false,
status: "no_session",
message: "Session must be started before making predictions. Call start() method first."
}Model Not Found
{
success: false,
status: "not_found",
message: "Model not found or not accessible"
}Conflict (Conditional Event Not Found)
{
success: false,
status: "conflict",
message: "Conditional event is not found"
}Target Already Reached
{
success: false,
status: "target_already_reached",
message: "Completion target already reached - prediction not applicable"
}Server Error
{
success: false,
status: "server_error",
message: "Server error processing prediction request"
}Network Error
{
success: false,
status: "network_error",
message: "Network error - please check your connection"
}Request Timeout
{
success: false,
status: "timeout",
message: "Request timed out after 400ms"
}Advanced Usage Example
async function getPersonalizedRecommendations(userId) {
try {
const prediction = await moveoOne.predict(`recommendation-model-${userId}`);
if (prediction.success) {
// Prediction completed successfully
if (prediction.prediction_binary) {
return {
showRecommendations: true,
confidence: prediction.prediction_probability
};
} else {
return {
showRecommendations: false,
reason: "Low confidence prediction"
};
}
} else {
// Handle any non-success state (pending, errors, etc.)
console.log(`Prediction status: ${prediction.status}`);
console.log(`Message: ${prediction.message}`);
return {
showRecommendations: false,
reason: `Prediction not available: ${prediction.message}`
};
}
} catch (error) {
console.error("Unexpected error during prediction:", error);
return null;
}
}Notes
- The
predictmethod is non-blocking and won't affect your application's performance - All requests have a 400ms timeout to prevent hanging
- The method automatically sends the current session ID and all buffered events from the MoveoOne instance
- The method returns a Promise, so you can use async/await or
.then()/.catch() - Latency tracking is enabled by default and runs asynchronously without affecting prediction response time
Comprehensive Example Usage
import { MoveoOne } from "moveo-one-analytics-js";
// Initialize analytics
const analytics = MoveoOne.getInstance("your-api-token-here");
analytics.setLogging(true);
// Start session with metadata
sessionMetadata.put("test", "a");
sessionMetadata.put("locale", "eng");
additionalMetadata.put("app_version", "2.1.0");
// Set additional metadata
additionalMetadata.put("user_country", "US");
additionalMetadata.put("company", "example_company");
additionalMetadata.put("user_role", "admin");
additionalMetadata.put("acquisition_channel", "organic");
additionalMetadata.put("device_category", "mobile");
additionalMetadata.put("subscription_plan", "pro");
additionalMetadata.put("has_purchased", "true");
// Track user interactions
function handleProductClick(productId) {
analytics.track("ecommerce_app", {
semanticGroup: "product_catalog",
id: `product_${productId}`,
type: "button",
action: "click",
value: "view_product"
});
}
function handleAddToCart(productId) {
analytics.track("ecommerce_app", {
semanticGroup: "shopping_cart",
id: `add_to_cart_${productId}`,
type: "button",
action: "click",
value: "add_item"
});
}
function handleFormInput(fieldName) {
analytics.tick({
semanticGroup: "user_input",
id: fieldName,
type: "input",
action: "edit",
value: "text_update"
});
}
// Update session metadata when user changes preferences
function updateUserPreferences(preferences) {
sessionMetadata.put("test", "a");
sessionMetadata.put("locale", "eng");
}Obtain API Key
To get your API key, visit Moveo One Application and create a new project.
Dashboard Access
Once your data is being tracked, you can access your analytics through the Moveo One Dashboard.
Support
For any issues or support, feel free to:
- Open an issue on our GitHub repository
- Email us at [email protected]
