npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ridi/event-tracker

v0.10.5

Published

[![npm](https://img.shields.io/npm/v/@ridi/event-tracker.svg)](https://www.npmjs.com/package/@ridi/event-tracker) [![Build Status](https://travis-ci.com/ridi/event-tracker.svg?branch=master)](https://travis-ci.com/ridi/event-tracker)

Downloads

3,797

Readme

@ridi/event-tracker

npm Build Status

Provides tracking API that helps to send events to various logging services like Google Analytics, RIDI beacon system

Install

NPM

$ npm install @ridi/event-tracker

Browser

<script src="./node_modules/@ridi/event-tracker/dist/umd/bundle.min.js"></script>

Usage

import { Tracker, DeviceType } from "@ridi/event-tracker";

const tracker = new Tracker({
  deviceType: DeviceType.PC,
  userId: "ridi",
  serviceProps: {
    "prop1": "value1",
    "prop2": "value1"
  },
  beaconOptions: {
    use: true
  },
  gaOptions: {
    trackingId: "UA-XXXXXXXX-X",
    pathPrefix: "/PAPERSHOP",
    fields: {
      contentGroup5: "PAPERSHOP"
    }
  },
  pixelOptions: {
    pixelId: "1000000000"
  },
  tagManagerOptions: {
    trackingId: "GTM-XXXX00"
  },
  kakaoOptions: {
    trackingId: "12345678"
  },
  twitterOptions: {
    mainPid: "a1234",
    impressionPid: "b1632",
    booksSignUpPid: "a1245",
    selectStartSubscriptionPid: "z1253",
  }

});

tracker.initialize();

tracker.sendPageView(location.href);

tracker.sendEvent("Purchased", {
  t_id: "201808180210135",
  value: 29000
});

API

new Tracker(MainTrackerOptions)

MainTrackerOptions

| Key | Required | Type | Description | | ------------------------------ | -------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | | debug | false | boolean | Defaults to false If set to true, All fired events are logged to browser via console.log | | development | false | boolean | Represents the state of the system environment your application | | userId | false | string | Logged user's identifier. | | deviceType | true | DeviceType | Type of connected user's device. Please refer DeviceType type | | serviceProps | false | ServiceProp | Additional properties related to specific service. Please refer ServiceProp type, which is Record<string, string> | | gaOptions | false | GAOptions | Options related with Google Analytics tracking module | | gaOptions.trackingId | true | string | GA Tracking ID like UA-000000-01. | | gaOptions.pathPrefix | flase | string | Pathname prefix for manual content grouping. | | gaOptions.fields | false | GAFields | GA configurable create only fields. | | beaconOptions | false | BeaconOptions | Options related with Beacon tracking module | | beaconOptions.use | false | boolean | Defaults to true, Specifies whether to send log data to beacon system | | beaconOptions.beaconSrc | false | string | Source of the image to be used as a beacon | | pixelOptions | false | PixelOptions | Options related with Pixel tracking module | | pixelOptions.pixelId | true | string | Array<string> | Facebook Pixel Tracking ID like 1000000000. | | tagManagerOptions | false | TagManagerOptions | Options related with Google Tag Manager tracking module | | tagManagerOptions.trackingId | true | string | Google Tag Manager Tracking ID like GTM-XXXX00 | | gTagOptions | false | GTagOptions | Options related with GTag tracking module | | gTagOptions.trackingId | true | string | GTag Tracking ID like AW-XXXX00 | | kakaoOptions.trackingId | true | string | Kakao Pixel Tracking ID | | twitterOptions.mainTid | true | string | Twitter Pixel universal tag type ID | | twitterOptions.impressionId | true | string | ID of impression event tag

Tracker.initialize()

To use this library correctly, you need to call this method least once either before calling other methods or after.

written event records before calling initialize, this records flush after initialized.

Tracker.sendPageView(href, referrer)

| Key | Required | Type | Description | | ---------- | -------- | ------ | --------------------------------------------- | | href | true | string | e.g https://example.com/path?key=value#hash | | referrer | false | string | e.g https://google.com/search?q=example |

Tracker.sendEvent(name, data)

| Key | Required | Type | Description | | ------ | -------- | ------ | ------------------------------------------------------------- | | name | true | string | Indicating what the given event is | | data | false | object | Data object to be sent with the event. e.g { color: 'red' } |

Tracker.set(ChangeableTrackerOptions)

Allow to set (change) MainTrackerOptions's attributes

ChangeableTrackerOptions

| Key | Required | Type | Description | | ------------ | -------- | ------------ | ----------- | | userId | false | string | | | deviceType | false | DeviceType | |

Develop

$ git clone https://github.com/ridi/event-tracker && cd tracking
$ npm install
$ npm run build

Test

$ npm run test

Publish

$ npm run deploy
$ # or
$ npm run build && npm publish --access public

LICENSE

MIT