0.4.6 • Published 8 months ago

analytics-plugin-trackable-min v0.4.6

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

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
})
0.4.6

8 months ago

0.4.5

8 months ago

0.4.4

8 months ago

0.4.3

8 months ago

0.4.2

8 months ago

0.4.1

8 months ago

0.4.0

8 months ago