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 🙏

© 2025 – Pkg Stats / Ryan Hefner

expo-quantum-metric

v1.0.5

Published

Expo Config Plugin for React Native Quantum Metric SDK integration

Downloads

35

Readme

expo-quantum-metric

An Expo Config Plugin for integrating the Quantum Metric SDK into your React Native application.

DISCLAIMER: This package is not officially created, maintained, or supported by Quantum Metric. The author is not associated with Quantum Metric in any capacity. This implementation is shared to help other developers integrate the Quantum Metric SDK with Expo and React Native applications.

Installation

# Using npm
npm install expo-quantum-metric

# Using yarn
yarn add expo-quantum-metric

# Using expo
expo install expo-quantum-metric

You also need to install the React Native Quantum Metric library:

npm install react-native-quantum-metric-library
# or
yarn add react-native-quantum-metric-library

For React Native library usage and details, please consult the react-native-quantum-metric-library documentation.

Requirements

  • Expo SDK: 52 or higher
  • Quantum Metric iOS SDK: Version 1.1.66 or higher required

Setup

Add the plugin to your Expo config with your Quantum Metric subscription and authentication details:

{
  "expo": {
    "plugins": [
      [
        "expo-quantum-metric",
        {
          "subscription": "YOUR_SUBSCRIPTION_NAME",
          "uid": "YOUR_UNIQUE_SDK_UID",
          "username": "YOUR_QM_USERNAME",  
          "password": "YOUR_QM_PASSWORD",
          "browserName": "Optional Custom Browser Name",
          "enableTestMode": false,
          "disableCrashReporting": false,
          "podVersion": "1.1.71",
          "aarVersion": "1.0.18"
        }
      ]
    ]
  }
}

Configuration Options

| Option | Type | Required | Default | Description | |--------|------|----------|---------|-------------| | subscription | String | Yes | - | Your Quantum Metric subscription name | | uid | String | Yes | - | Your unique SDK UID | | username | String | Yes | - | Your Quantum Metric repository username | | password | String | Yes | - | Your Quantum Metric repository password | | browserName | String | No | App Name | Custom browser name for better identification | | enableTestMode | Boolean | No | false | Whether to enable test mode configuration | | disableCrashReporting | Boolean | No | false | Whether to disable crash reporting | | podVersion | String | No | "1.1.71" | iOS SDK version (must be 1.1.66 or higher) | | aarVersion | String | No | "1.0.18" | Android SDK version (must be 1.0.18 or higher) |

Security Best Practices

It's recommended to use environment variables for sensitive information like username and password:

// app.config.js
export default {
  expo: {
    plugins: [
      [
        'expo-quantum-metric',
        {
          subscription: process.env.QM_SUBSCRIPTION,
          uid: process.env.QM_UID,
          username: process.env.QM_USERNAME,
          password: process.env.QM_PASSWORD,
          browserName: 'MyApp-Production',
        },
      ],
    ],
  },
};

Rebuilding Your App

After configuring the plugin, you'll need to rebuild your native code:

# Using Expo Dev Client
expo prebuild --clean
npx expo run:ios
npx expo run:android

# Or with EAS Build
eas build --platform all

SDK Features

The plugin automatically configures the following features:

iOS

  • Integrates the Quantum Metric SDK via CocoaPods
  • Initializes the SDK in your AppDelegate
  • Configures optional features like crash reporting and test mode
  • Supports both Swift and Objective-C projects

Android

  • Adds the Maven repository with secure credential handling
  • Adds necessary permissions (internet and network state)
  • Initializes the SDK in your MainApplication
  • Configures optional features like browser name and test mode

SDK Usage in Your Application

After integration, you can use the Quantum Metric functionality through the React Native library:

import QM from 'react-native-quantum-metric-library';

For complete API documentation and advanced usage, please consult the [React Native Quantum Metric Library](https://www.npmjs.com/package/react-native-quantum-metric-library) documentation.

## Troubleshooting

### iOS
- **Pod Install Errors**: Verify your username and password are correct
- **SDK Initialization Issues**: Check console logs for Quantum Metric errors
- **Missing Sessions**: Use the session callback to debug (see Quantum Metric docs)

### Android
- **Maven Repository Errors**: Verify your username and password are correct
- **Initialization Issues**: Set up error listeners to catch initialization problems
- **Permissions Issues**: Ensure your app has internet and network state permissions

## Getting Help

If you encounter issues, check the following:

1. Verify you have the correct credentials from your Quantum Metric account team
2. Make sure you're using the correct subscription ID and UID
3. Check build logs for any error messages related to Quantum Metric

## License

MIT