jwasham / analytics

Analytics beacon for general purpose.

Home Page:https://gokaygurcan.github.io/analytics/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Analytics

Analytics beacon for general purpose.


analytics website travis ci vulnerabilities license

## Installation

You can deploy to Heroku:

Deploy

Or you can deploy on OpenShift:

DEPLOY TO OpenShift

or run on your own machine:

git clone git@github.com:gokaygurcan/analytics.git
cd analytics
npm install
npm start

Showcase

Type Google (svg) Google (png) Yandex (svg) Yandex (png)
Flat square
Flat
Plastic
Social
Pixel (there is a pixel here)

Usage

You can put the beacon in your Readme file to track GitHub statistics:

![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg)

Or, you can call the pixel via AJAX call or something similar to track some pages/events:

$.ajax({
  method: 'GET',
  url: 'https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.gif'
}).done(function(response) {
  console.log(response); // this will be a 1x1 pixel image though
});

Note: you can use anything you like but using organization_name/repository_name will help you if you want to use more than one repository with only one tracking id.

## Examples

Google

You can use either svg or png extension with style querystring. Default is flat-square.

  • Flat square: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=flat-square)

  • Flat: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=flat)

  • Plastic: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=plastic)

  • Social: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=social)

Yandex

You can use either svg or png extension with style querystring. Default is flat-square.

  • Flat square: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=flat-square)

  • Flat: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=flat)

  • Plastic: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=plastic)

  • Social: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.svg?style=social)

### Pixel

You can only use gif extension, no svg or png can be used as a pixel image.

  • Pixel: ![analytics](https://analytics.gokaygurcan.com/UA-XXXXXXXX-X/organization_name/repository_name.gif)

License

MIT © Gökay Gürcan

About

Analytics beacon for general purpose.

https://gokaygurcan.github.io/analytics/

License:MIT License


Languages

Language:JavaScript 100.0%