npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

moveo-one-analytics-react-native

v1.0.13

Published

Moveo One analytics library for React Native app

Readme

Moveo Analytics React Native Library

Current version: 1.0.13

A powerful analytics library for React Native applications that provides comprehensive user interaction tracking and behavioral analysis through the Moveo One platform.

Table of Contents

  1. Introduction
  2. Quick Start Guide
  3. Event Types and Actions
  4. Comprehensive Example Usage
  5. Prediction API
  6. Obtain API Key
  7. Dashboard Access
  8. Support

Introduction

Moveo Analytics React Native Library is designed to capture and analyze user interactions within your React Native application. It provides detailed insights into user behavior, interaction patterns, and application usage through a comprehensive tracking system.

The library supports:

  • Context-based tracking for organizing user sessions
  • Semantic grouping for logical element organization
  • Flexible metadata for enhanced analytics
  • Data processing with configurable flush intervals
  • Multiple event types and actions for comprehensive interaction capture
  • Pre-built components for automatic tracking

Quick Start Guide

Prerequisites

  • React Native project
  • Node.js and npm installed
  • Moveo One API key (obtain from Moveo One App)

Installation

Install the package using npm:

npm install moveo-one-analytics-react-native

Library Initialization

Initialize the library in your main App component:

import { MoveoOne } from "moveo-one-analytics-react-native";

// Initialize with your API token
const moveoInstance = MoveoOne.getInstance("YOUR_API_KEY");

Setup

Configure additional parameters as needed:

// Set flush interval (5-60 seconds)
moveoInstance.setFlushInterval(20000); // 20 seconds

// Enable logging for debugging
moveoInstance.setLogging(true);

Metadata and Additional Metadata

The library supports two types of metadata management:

updateSessionMetadata()

Updates current 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");
  • sessionMetadata.put("app_version", "2.1.0");

updateAdditionalMetadata()

Updates additional metadata for the session. This is used as 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"

Metadata Support in Track and Tick Events:

import { TYPE, ACTION } from 'moveo-one-analytics-react-native';

// Track with metadata
moveoInstance.track("checkout_screen", {
  semanticGroup: "user_interactions",
  id: "checkout_button",
  type: TYPE.BUTTON,
  action: ACTION.CLICK,
  value: "proceed_to_payment"
});

// Tick with metadata
moveoInstance.tick({
  semanticGroup: "content_interactions",
  id: "product_card",
  type: TYPE.CARD,
  action: ACTION.APPEAR,
  value: "product_view"
});

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.

// Start session with context
moveoInstance.start("main_app_flow", {
  test: "a",
  locale: "eng"
});

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 one specified in start method
import { TYPE, ACTION } from 'moveo-one-analytics-react-native';

moveoInstance.track("checkout_process", {
  semanticGroup: "user_interactions",
  id: "payment_button",
  type: TYPE.BUTTON,
  action: ACTION.CLICK,
  value: "pay_now"
});

Use tick() when:

  • You're tracking events within the same context
  • You want tracking without explicitly defining context
  • You want to track events in same context specified in start method
import { TYPE, ACTION } from 'moveo-one-analytics-react-native';

moveoInstance.tick({
  semanticGroup: "screen_0",
  id: "text_view_1",
  type: TYPE.TEXT,
  action: ACTION.VIEW,
  value: "welcome_message"
});

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

Event Types and Actions

Available Event Types

| Type | Description | |------|-------------| | button | Interactive buttons | | text | Text elements | | textEdit | Text input fields | | image | Single images | | images | Multiple images | | image_scroll_horizontal | Horizontal image scrolling | | image_scroll_vertical | Vertical image scrolling | | picker | Selection pickers | | slider | Slider controls | | switchControl | Toggle switches | | progressBar | Progress indicators | | checkbox | Checkbox controls | | radioButton | Radio button controls | | table | Table views | | collection | Collection views | | segmentedControl | Segmented controls | | stepper | Stepper controls | | datePicker | Date pickers | | timePicker | Time pickers | | searchBar | Search bars | | webView | Web view components | | scrollView | Scroll views | | activityIndicator | Loading indicators | | video | Video elements | | videoPlayer | Video players | | audioPlayer | Audio players | | map | Map components | | tabBar | Tab bar components | | tabBarPage | Tab bar pages | | tabBarPageTitle | Tab bar page titles | | tabBarPageSubtitle | Tab bar page subtitles | | toolbar | Toolbar components | | alert | Alert dialogs | | alertTitle | Alert titles | | alertSubtitle | Alert subtitles | | modal | Modal dialogs | | toast | Toast notifications | | badge | Badge elements | | dropdown | Dropdown menus | | card | Card components | | chip | Chip elements | | grid | Grid layouts | | custom | Custom elements |

Available Event Actions

| Action | Description | |--------|-------------| | click | Element clicked | | view | Element viewed | | appear | Element appeared | | disappear | Element disappeared | | swipe | Swipe gesture | | scroll | Scroll action | | drag | Drag action | | drop | Drop action | | tap | Tap gesture | | doubleTap | Double tap gesture | | longPress | Long press gesture | | pinch | Pinch gesture | | zoom | Zoom action | | rotate | Rotate action | | submit | Form submission | | select | Selection action | | deselect | Deselection action | | hover | Hover action | | focus | Focus action | | blur | Blur action | | input | Input action | | valueChange | Value change | | dragStart | Drag start | | dragEnd | Drag end | | load | Load action | | unload | Unload action | | refresh | Refresh action | | play | Play action | | pause | Pause action | | stop | Stop action | | seek | Seek action | | error | Error action | | success | Success action | | cancel | Cancel action | | retry | Retry action | | share | Share action | | open | Open action | | close | Close action | | expand | Expand action | | collapse | Collapse action | | edit | Edit action | | custom | Custom action |

Comprehensive Example Usage

Here's a complete example showing how to integrate Moveo Analytics in a React Native app:

import React, { useEffect, useState } from 'react';
import { 
  View, 
  Text, 
  TouchableOpacity, 
  StyleSheet, 
  TextInput 
} from 'react-native';
import { 
  MoveoOne, 
  MoveoButton, 
  MoveoText, 
  MoveoTextInput,
  MoveoFlatList,
  TYPE,
  ACTION 
} from 'moveo-one-analytics-react-native';

// Initialize Moveo once at app entry
const moveoInstance = MoveoOne.getInstance("YOUR_API_KEY");

export default function App() {
  const [inputText, setInputText] = useState("");

  useEffect(() => {
    // Core initialization that should run once
    moveoInstance.setLogging(true);
    moveoInstance.setFlushInterval(20000);
    
    // Start session with context
moveoInstance.start("main_screen", {
  test: "a",
  locale: "eng"
});

// Update additional metadata
moveoInstance.updateAdditionalMetadata({
  user_country: "US",
  company: "example_company"
});
  }, []);

  const handleButtonPress = (buttonName) => {
    moveoInstance.track("main_screen", {
      semanticGroup: "user_interactions",
      id: "main_button",
      type: TYPE.BUTTON,
      action: ACTION.CLICK,
      value: "primary_action"
    });
    console.log(`${buttonName} clicked!`);
  };

  const handleInputSubmit = () => {
    moveoInstance.track("main_screen", {
      semanticGroup: "user_interactions",
      id: "main_input",
      type: TYPE.TEXT_EDIT,
      action: ACTION.INPUT,
      value: "text_entered"
    });
  };

  return (
    <View style={styles.mainContainer}>
      <Text style={styles.title}>Moveo One</Text>
      <View style={styles.contentContainer}>
        <Text style={styles.paragraph}>
          This is an example React Native app made for demo purposes.
        </Text>
        <View style={styles.buttonGroup}>
          <TouchableOpacity
            style={styles.button}
            onPress={() => handleButtonPress("Button One")}
          >
            <Text style={styles.buttonText}>Button One</Text>
          </TouchableOpacity>
          <TouchableOpacity
            style={[styles.button, styles.secondaryButton]}
            onPress={() => handleButtonPress("Button Two")}
          >
            <Text style={styles.buttonText}>Button Two</Text>
          </TouchableOpacity>
        </View>
        <TextInput
          style={styles.input}
          onChangeText={setInputText}
          value={inputText}
          onSubmitEditing={handleInputSubmit}
          placeholder="Type something..."
          placeholderTextColor="#a0aec0"
        />
      </View>
    </View>
  );
}

const styles = StyleSheet.create({
  mainContainer: {
    flex: 1,
    backgroundColor: "#f0f8ff",
    alignItems: "center",
    paddingTop: 60,
  },
  title: {
    fontSize: 32,
    fontWeight: "700",
    color: "#1a365d",
    marginBottom: 40,
    letterSpacing: 1.2,
  },
  contentContainer: {
    backgroundColor: "white",
    width: "85%",
    borderRadius: 20,
    padding: 25,
    shadowColor: "#2b6cb0",
    shadowOffset: { width: 0, height: 4 },
    shadowOpacity: 0.1,
    shadowRadius: 10,
    elevation: 5,
  },
  paragraph: {
    fontSize: 16,
    color: "#4a5568",
    lineHeight: 24,
    marginBottom: 30,
    textAlign: "center",
  },
  buttonGroup: {
    gap: 16,
  },
  button: {
    backgroundColor: "#2b6cb0",
    paddingVertical: 14,
    borderRadius: 12,
    alignItems: "center",
    shadowColor: "#2b6cb0",
    shadowOffset: { width: 0, height: 2 },
    shadowOpacity: 0.2,
    shadowRadius: 4,
  },
  secondaryButton: {
    backgroundColor: "#4299e1",
  },
  buttonText: {
    color: "white",
    fontSize: 16,
    fontWeight: "600",
  },
  input: {
    backgroundColor: "#ffffff",
    borderWidth: 1,
    borderColor: "#e2e8f0",
    borderRadius: 12,
    paddingVertical: 14,
    paddingHorizontal: 16,
    fontSize: 16,
    color: "#4a5568",
    marginTop: 20,
    shadowColor: "#2b6cb0",
    shadowOffset: { width: 0, height: 2 },
    shadowOpacity: 0.1,
    shadowRadius: 4,
    elevation: 2,
  },
});

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.

Basic Usage

// Make sure to start a session first
moveoInstance.start("app_context", {
  version: "1.0.0",
  environment: "production"
});

// Get prediction from a model
const result = await moveoInstance.predict("your-model-id");

if (result.success) {
  console.log("Prediction probability:", result.prediction_probability);
  console.log("Binary result:", result.prediction_binary);
} else {
  console.log("Error:", result.message);
}

Prerequisites

Before using the predict method, ensure:

  1. Session is started: Call moveoInstance.start() before making predictions
  2. Valid token: The MoveoOne instance must be initialized with a valid API token
  3. 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

{
  success: false,
  status: "conflict",
  message: "Conditional event not found for prediction"
}

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 moveoInstance.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 all errors and pending states
      console.error(`Prediction failed: ${prediction.message}`);
      return null;
    }
  } catch (error) {
    console.error("Unexpected error during prediction:", error);
    return null;
  }
}

Latency Tracking

The library includes built-in latency tracking for prediction requests. This feature helps monitor performance and execution times of your prediction models.

Configuration

// Enable latency tracking (default: true)
moveoInstance.calculateLatency(true);

// Disable latency tracking
moveoInstance.calculateLatency(false);

How It Works

When latency tracking is enabled, the library automatically:

  1. Measures execution time from when the prediction request is sent until the response is received
  2. Sends latency data asynchronously to the service after returning the prediction result to your application
  3. Tracks all scenarios including successful predictions, errors, timeouts, and pending states
  4. Does not affect performance - latency tracking runs in the background and doesn't impact response times

Notes

  • The predict method is non-blocking and won't affect your application's performance
  • All requests have a 400ms timeout to prevent hanging
  • The method automatically uses the current session ID 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 in the background

Obtain API Key

You can find your organization's API token in the Moveo One App. Navigate to your organization settings to retrieve your unique API key.

Dashboard Access

Once your data is being tracked, you can access your analytics through Moveo One Dashboard. The dashboard provides comprehensive insights into user behavior, interaction patterns, and application performance.

Support

For any issues or support, feel free to:


Note: This library is designed for React Native applications and requires React Native 0.60.0 or later. Make sure to handle user privacy and data collection in compliance with relevant regulations.