nickhammond / analytics.js-integrations

All of the third-party analytics.js integrations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

analytics.js-integrations Build Status

This repository houses all of the integrations that get built into Analytics.js.

All new integrations are added by pull requests, just read the contribution docs to get started and submit your own! If you ever need any help, feel free to email friends@segment.io.

Developing

This repository relies on a couple dependencies that help make our lives easier while developing. They are:

To get started with development, you need to be running node 0.11.x, an easy way to get it is

$ npm install -g n
$ n 0.11

Make sure you have ~/.netrc setup like:

machine api.github.com
  user <user>
  password <token>

Here's how you can create a token.

Then clone the repository and then inside of it run:

$ make

That will downloaded all of the dependencies needed, and build the test-ready files. Then, edit as you please, adding new integrations or editing the logic of an existing integration. When you are ready to test run:

$ make test

That will automatically lint all of the Javascript, and run the entire test suite for each integration. For convenience, you can also limit the tests to just the integration you're working with like so:

$ make test integration=kissmetrics

And if you'd like you debug in the browser, run:

$ make test-browser
$ make test-browser integration=customerio

Once your tests pass, you are ready to submit a pull request!

About

All of the third-party analytics.js integrations.


Languages

Language:JavaScript 99.3%Language:CSS 0.7%