Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@r2u/analytics

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@r2u/analytics

Real-time data processing analytics

  • 4.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Analytics

Real-time data processing analytics

Based on https://www.youtube.com/watch?v=2SX0yZ902_Y

Events

  • click: user clicked on the viewer;
  • like: thumbs up on feedback;
  • dislike: thumbs down on feedback;
  • fallback: user doesn't have a compatible device;
  • impression: call-to-action appeared on the screen;
  • interaction_duration: time spent interacting with either viewer, AR or customizer;
  • page_view: SDK loaded;
  • product_page_view: product page was initialized;
  • session_start: SDK loaded.
Deprecated
  • ar_session_duration: AR session duration;

Example

// initalize
const analytics = new Analytics({
  dataLayerIntegration: true,
  gcpAnalyticsUrl: 'https://www.foobar.com.br',
})
// set dimension values
analytics.set('sku', 'RE000001')
// send event that triggers at most once per session
analytics.send({
  event: analytics.events.impression,
  data: { [analytics.dimensions.placement]: 'ar_viewer' },
  scope: 'session'
})
// send event that triggers every time
analytics.send({
  event: analytics.events.click,
  data: { [analytics.dimensions.placement]: 'ar_viewer' }
})

FAQs

Package last updated on 08 Nov 2021

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc