Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@ridi/event-tracker
Advanced tools
[![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)
Provides tracking API that helps to send events to various logging services like Google Analytics, RIDI beacon system
$ npm install @ridi/event-tracker
<script src="./node_modules/@ridi/event-tracker/dist/umd/bundle.min.js"></script>
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
});
new Tracker(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` |
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
Key | Required | Type | Description |
---|---|---|---|
userId | false | string | |
deviceType | false | DeviceType |
$ git clone https://github.com/ridi/event-tracker && cd tracking
$ npm install
$ npm run build
$ npm run test
$ npm run deploy
$ # or
$ npm run build && npm publish --access public
MIT
FAQs
[![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)
The npm package @ridi/event-tracker receives a total of 560 weekly downloads. As such, @ridi/event-tracker popularity was classified as not popular.
We found that @ridi/event-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.