Socket
Book a DemoInstallSign in
Socket

@embrace-io/webview-tracker

Package Overview
Dependencies
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@embrace-io/webview-tracker

Allows to track events on WebViews components

unpublished
latest
Source
npmnpm
Version
3.17.0
Version published
Maintainers
4
Created
Source

React Native Embrace - WebView Tracker

Core Module Required

This module requires React Native Embrace SDK.

Add WebView Tracker

Adding Context to Sessions

Embrace can collect basic session data and crashes as you've already seen in the Crash Reporting and Session Reporting sections. Embrace can also collect the data from your web page inside a Webview component Here's how you add the WebView tracker to the session.

Adding the component

Embrace has a separate module for tracking WebView, to use it you will need to add the WebView Tracker

Install the component

yarn add @embrace-io/webview-tracker
npm install @embrace-io/webview-tracker

Adding the method to your code

Add the logEmbraceWebView to your WebView component

// Import the Embrace log method
import { logEmbraceWebView } from "@embrace-io/webview-tracker";
import { WebView } from "react-native-webview";

const App = () => {
  const handleOnMessage = (message) => {
    logEmbraceWebView("MyCheckout", message);
  };
  return (
    <WebView
      useWebKit
      onMessage={handleOnMessage}
      source={{ uri: "URL TO TRACK" }}
    />
  );
};

FAQs

Package last updated on 16 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts