Code Monkey home page Code Monkey logo

node-cookieless's Introduction

Build Status

Cookieless.js

Cookieless user tracking for node.js

Cookieless.js is a lightweight implementation of visitor's tracking using ETag for Node.js. It may be used on its own or along side other tracking methods (cookies or browser fingerprinting), so whenever one solution fails, you may fallback to a back up one.

Read more about ETag here.

This package allows you to use the visitor's information both server side and client side by providing a JSONP API.

Install

npm install cookieless --save

Tests

npm test

Example

Server side

The following example starts a tracking beacon at: http://127.0.0.1/i.js?callback=setVisitor

var CookielessTracker = require('cookieless');

/*
Note: it's not mandatory to start a beacon, you may handle the requests
      yourself and just use the tracker's API
*/
CookielessTracker.startBeacon(7123, '0.0.0.0', function(visitor) {
  redis.incr('visits.'+visitor.id);
});

Client side (browser)

$.ajax({
    url: "http://127.0.0.1:7123/i.js",
    jsonp: "callback",
    dataType: "jsonp",
    success: function( visitor ) {
        //Do something
        trackImpressionFor(visitor.id, visitor.session); //example
    }
});

API

(static) startBeacon(port=7123, host='0.0.0.0', onVisitorCallback)

The easiest way of hit the ground running is by using the built-in lightweight beacon, which starts a listener and processes the tracking requests. If a onVisitorCallback function is given, it will be called everytime a visitor calls the endpoint.

var CookielessTracker = require('cookieless');
CookielessTracker.startBeacon(7123, '0.0.0.0', function(visitor) {
  console.log("Visitor " + visitor.id + " has visited us " + visitor.session +
              " times. Last time was on " + visitor.lastSeen);
});

The endpoint will be available at http://127.0.0.1/i.js?callback=setVisitor and the response will be:

; typeof setVisitor === 'function' && setVisitor({id: 31428830410917,session: 3,lastSeen: 1428830410917});

Contructor(request, update=true)

Initializes a new visitor (may be returning visitor) from a request. If it is a new visitor it will automatically generate a new unique ETag.

If update is set to true, it will automatcally update the visitor's session if they were last seen over 30 minutes ago. (Otherwise you'll have to manually call the update API).

var CookielessTracker = require('cookieless');

http.createServer(function (req, res) {
  var visitor = new CookielessTracker(req);
  console.log("This visitor is on his " + visitor.session + " visit!");
  visitor.respond(res);
});

respond([callback,] res)

Given a response object, it will build and send a JSONP response to the visitor with the callback function name (if given). It is a combination of statusCode(), buildHeader(), and buildScript(). (Important: the callback function name should be set and never changed, otherwise the tracking will be reset)

http.createServer(function (req, res) {
  var visitor = new CookielessTracker(req);
  // Do something
  visitor.respond('setVisitor', res);
});

buildScript([callback])

Builds the JSONP script with the visitor's information, the callback argument is a string with name of the callback function for the JSONP response. (If the request has a callback set in the query string, it will be the default value)

console.log(visitor.buildScript('setVisitor'));
//Outputs:
//; typeof setVisitor === 'function' && setVisitor({id: 31428830410917,session: 3,lastSeen: 1428830410917});

buildHeader()

Builds the header for the response including the identifier ETag.

//Output:
{
  'Content-Type': 'text/javascript',
  'ETag': "31428830410917.1428830410917.3"
}

statusCode()

It gives the most appropriate status code for a tracking response. The response only changes when the session number gets updated, in that case the stattus will be 200, any other case should return 304.

var visitor = new CookielessTracker(req);
res.writeHead(visitor.statusCode(), visitor.buildHeader());

node-cookieless's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

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.