New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

analytics-plugin-trackable-min

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

analytics-plugin-trackable-min

Trackable Plugin

Source
npmnpm
Version
0.4.5
Version published
Weekly downloads
22
-35.29%
Maintainers
1
Weekly downloads
 
Created
Source

Analytics Window Events Plugin

Fire events on window enter and window leave events

Usage

npm install analytics
npm install analytics-plugin-window-events

After installing the plugin, the windowLeft and windowEnter events will fire.

You can listen to these events via additional plugins or with .on & .once listeners.

import Analytics from 'analytics'
import windowEventsPlugin from 'analytics-plugin-window-events'

/* Example plugin that listener to window */
const customWindowListenerPlugin = {
  NAMESPACE: 'custom-window-listener-plugin',
  windowEnter: () => {
    console.log('Window entered do something via plugin')
  },
  windowLeft: () => {
    console.log('Window left do something via plugin')
  }
}

const analytics = Analytics({
  app: 'my-app',
  plugins: [
    windowEventsPlugin(),
    customWindowListenerPlugin
  ]
})

analytics.on('windowEnter', () => {
  // do stuff when visitor enters window
})

analytics.on('windowLeft', () => {
  // do stuff when visitor leaves window
})

Keywords

analytics

FAQs

Package last updated on 04 Sep 2023

Related posts