
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@ridi/ridi-event-tracker
Advanced tools
[](https://www.npmjs.com/package/@ridi/ridi-event-tracker)
Provides tracking API that helps to send events to various logging services like Google Analytics, RIDI beacon system
$ npm install @ridi/ridi-event-tracker
# local
<script src="./node_modules/@ridi/event-tracker/dist/umd/bundle.min.js"></script>
# In GTM
<script src="https://unpkg.com/@ridi/ridi-event-tracker@{{EVENT_TRACKER_VERSION}}/dist/umd/bundle.min.js"></script>
<script>
var beaconSrc = 'https://s3.ap-northeast-2.amazonaws.com/beacon-ridibooks-2/beacon_ridibooks_2.gif';
window.ret = new Tracker({
deviceType: '{{DeviceType}}',
uId: '{{UserID}}',
beaconOptions: {
beaconSrc: beaconSrc
}
});
window.ret.initialize();
</script>
import { Tracker, DeviceType } from "@ridi/event-tracker";
const tracker = new Tracker({
deviceType: DeviceType.PC,
uId: 123456,
debug: false,
throttleWait: 1000,
beaconOptions: {
beaconSrc: "http://beacon.com",
},
});
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 |
uId | false | number | Logged user's identifier. |
deviceType | true | DeviceType | Type of connected user's device. Please refer DeviceType type |
beaconOptions | false | BeaconOptions | Options related with Beacon tracking module |
beaconOptions.beaconSrc | false | string | Source of the image to be used as a beacon |
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.
$ git clone https://github.com/ridi/event-tracker && cd tracking
$ npm install
$ npm run build
$ npm run test
$ npm login
$ npm run deploy
$ # or
$ npm run build && npm publish --access public
MIT
FAQs
[](https://www.npmjs.com/package/@ridi/ridi-event-tracker)
We found that @ridi/ridi-event-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.