Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matomo-org/matomo-nodejs-tracker
A Node.js wrapper for the Matomo (Piwik) tracking HTTP API
https://github.com/matomo-org/matomo-nodejs-tracker
analytics nodejs piwik
Last synced: 2 months ago
JSON representation
A Node.js wrapper for the Matomo (Piwik) tracking HTTP API
- Host: GitHub
- URL: https://github.com/matomo-org/matomo-nodejs-tracker
- Owner: matomo-org
- License: mit
- Created: 2014-01-08T16:04:02.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T04:56:28.000Z (over 1 year ago)
- Last Synced: 2024-04-14T00:59:43.531Z (7 months ago)
- Topics: analytics, nodejs, piwik
- Language: JavaScript
- Homepage:
- Size: 482 KB
- Stars: 118
- Watchers: 8
- Forks: 42
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Matomo Tracker [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]
> A wrapper for the Matomo Tracking HTTP API
## Usage
First, install `matomo-tracker` as a dependency:
```shell
npm install --save matomo-tracker
```Then, use it in your project:
```javascript
var MatomoTracker = require('matomo-tracker');// Initialize with your site ID and Matomo URL
var matomo = new MatomoTracker(1, 'http://mywebsite.com/matomo.php');// Optional: Respond to tracking errors
matomo.on('error', function(err) {
console.log('error tracking request: ', err);
});// Track a request URL:
// Either as a simple string …
matomo.track('http://example.com/track/this/url');// … or provide further options:
matomo.track({
url: 'http://example.com/track/this/url',
action_name: 'This will be shown in your dashboard',
ua: 'Node.js v0.10.24',
cvar: JSON.stringify({
'1': ['custom variable name', 'custom variable value']
})
});// … or trackBulk:
var events = [{
'_id': 'AA814767-7B1F-5C81-8F1D-8E47AD7D2982',
'cdt': '2018-03-22T02:32:22.867Z',
'e_c': 'Buy',
'e_a': 'rightButton',
'e_v': '2'
},{
'_id': 'AA814767-7B1F-5C81-8F1D-8E47AD7D2982',
'cdt': '2018-03-22T02:33:52.962Z',
'e_c': 'Buy',
'e_a': 'leftButton',
'e_v': '4'
}];
matomo.trackBulk(events, (resData) => {
// done.
})
```That's it. For a complete list of options, see [Matomo's Tracking HTTP API Reference](https://developer.matomo.org/api-reference/tracking-api).
## Advanced usage
If you renamed the tracking file `piwik.php` or `matomo.php` of your matomo instance, the following error will be thrown:
```js
new MatomoTracker(1, 'http://matomo.my-site.com/my-file.php'))
// ERROR: A tracker URL must end with "matomo.php" or "piwik.php"
```To skip this check, simply pass `true` as third argument to the constructor:
```js
new MatomoTracker(1, 'http://matomo.my-site.com/my-file.php', true))
// OK
```## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)
[npm-url]: https://npmjs.org/package/matomo-tracker
[npm-image]: https://img.shields.io/npm/v/matomo-tracker.svg[travis-url]: https://travis-ci.org/matomo-org/matomo-nodejs-tracker
[travis-image]: https://img.shields.io/travis/matomo-org/matomo-nodejs-tracker.svg