Socket
Book a DemoInstallSign in
Socket

@usermaven/react

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@usermaven/react

Usermaven JavaScript SDK for React

1.5.8
latest
Source
npmnpm
Version published
Weekly downloads
333
2.15%
Maintainers
1
Weekly downloads
 
Created
Source

Official Usermaven SDK for React

General

This package is a wrapper around @usermaven/sdk-js, with added functionality related to React.

Installation

To use Usermaven SDK, install npm package

npm install @usermaven/react

Import and configure Usermaven SDK Provider

//...
import { createClient, UsermavenProvider } from "@usermaven/react";

// initialize Usermaven core
const usermavenClient = createClient({
  tracking_host: "__USERMAVEN_HOST__",
  key: "__API_KET__",
  // See Usermaven SDK parameters section for more options
});

// wrap our app with Usermaven provider
ReactDOM.render(
  <React.StrictMode>
    <UsermavenProvider client={usermavenClient}>
      <App />
    </UsermavenProvider>
  </React.StrictMode>,
  document.getElementById('root')
);

See parameters list for createClient() call.

Usage

import { useUsermaven } from "@usermaven/react";

const App = () => {
  const {id, track, trackPageView} = useUsermaven(); // import methods from useUsermaven hook

  useEffect(() => {
    id({id: '__USER_ID__', email: '__USER_EMAIL__'}); // identify current user for all track events
    trackPageView() // send page_view event
  }, [])
  
  const onClick = (btnName: string) => {
    track('btn_click', {btn: btnName}); // send btn_click event with button name payload on click
  }
  
  return (
    <button onClick="() => onClick('test_btn')">Test button</button>
  )
}


To enable automatic pageview tracking, add usePageView() hook. This hook will send pageview each time user loads a new page (including internal SPA pages). This hook relies on React Router and requires react-router (>=5.x) package to be present

const App = () => {
  usePageView() //this hook will send pageview track event on router change

  return (
    <Routes>
      <Route path="/" element={<Main />} />
      <Route path="page" element={<Page />} />
    </Routes>
  );
}


If you need to pre-configure usermaven event - for example, identify a user, it's possible to do via before callback:

usePageView({before: (usermaven) => usermaven.id({id: '__USER_ID__', email: '__USER_EMAIL__'})})

Hooks

useUsermaven

Returns object with id, track, trackPageView, rawTrack, set, unset and interceptAnalytics methods of Usermaven SDK.

usePageView

Can be used only with react-router. Sends pageview event on every route change.

FAQs

Package last updated on 07 Jul 2025

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.