1.2.0 • Published 6 months ago

@dext7r/tracker v1.2.0

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

Tracker

Tracker is a JavaScript library for tracking various events on a web page, such as mouse events, history events, hash changes, DOM events, and JavaScript errors.

ci license version language last stars

Table of Contents

Installation

Install the library using npm:

npm install @dext7r/tracker

Usage

import Tracker from '@dext7r/tracker';

// Initialize the Tracker with options
const tracker = new Tracker({
  requestUrl: 'https://nestjs.h7ml.cn//system/track',
  historyTracker: true,
  hashTracker: true,
  domTracker: true,
  jsError: true,
  // Add more configuration options as needed
});

// Set user ID and extra information
tracker.setUserId('user123');
tracker.setExtra({ plan: 'premium', source: 'website' });

// Send custom tracking data
tracker.sendTracker({
  event: 'customEvent',
  targetKey: 'buttonClick',
  // Add more data as needed
});

Configuration

The Tracker class accepts various configuration options:

  • requestUrl: The API endpoint to send tracking data.
  • historyTracker: Enable or disable tracking of history events.
  • hashTracker: Enable or disable tracking of hash changes.
  • domTracker: Enable or disable DOM element tracking.
  • jsError: Enable or disable tracking of JavaScript errors.
  • sdkVersion: The version of the Tracker SDK.
  • extra: Additional information to include in tracking data.

Examples

// Initialize Tracker with minimal configuration
const tracker = new Tracker({ requestUrl: 'https://nestjs.h7ml.cn//system/track' });

// Set user ID
tracker.setUserId('user123');

// Set extra information
tracker.setExtra({ plan: 'premium', source: 'website' });

// Send custom tracking data
tracker.sendTracker({
  event: 'customEvent',
  targetKey: 'buttonClick',
  // Add more data as needed
});

Contributing

If you'd like to contribute to this project, feel free to open issues or submit pull requests. Contributions are welcome!

License

This project is licensed under the MIT License.

Make sure to replace the placeholder URLs, API endpoints, and other details with your actual project information. If you have specific sections or details you want to highlight, feel free to modify the template accordingly.

1.2.0

6 months ago

1.1.0

6 months ago

1.0.0

6 months ago