GithubHelp home page GithubHelp logo

ga_cookie_js_parser's Introduction

Google Analytics cookie JS parser

Allows you to parse with JS https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage#gajs

Install

$ npm install ga_cookie_js_parser

$ var gaCookieParser = require('ga_cookie_js_parser')

Or download parser.js

Getting Started

console.log(gaCookieParser(document.cookie))

{
    utma: {
        domainHash: '12345',
        userId: '123', // GA userId
        initialVisitTs: 1294887021, // unix timestamp
        previousVisitTs: 1294887021, // unix timestamp
        currentVisitTs: 1294887021, // unix timestamp
        pageViews: 5 // page views count in this 30 min session
    },

    utmb: {
        domainHash: '12345',
        pageViews: 5, // page views count in this 30 min session
        outboundClick: 10, // number of outbound links clicked counting down from 10
        currentVisitTs: 1294887021, // unix timestamp
    },

    utmc: {
        domainHash: '12345'
    },

    utmz: {
        domainHash: '12345',
        lastCookiesUpdateTs: 1294887021, // unix timestamp
        sessionCounter: 1, // number of sessions from incoming sites
        resourceCounter: 1, // number of sites, which user comes from
        utmcsr: 'google', // source
        utmccn: 'partner_287', // campaign name
        utmcmd: 'organic', // medium
        utmctr: 'search term', // term(s)
        utmcct: '/ref.php', // content (referring page in case of referrals)
        utmgclid: 'CI7wh8C6tKYCFU2DpAod7z97IQ' // gclid, linking referral back to adwords
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.