GithubHelp home page GithubHelp logo

pasta-js's Introduction

pasta-js

Build Status

It makes easy to collect data to send.

How to run examples?

  • npm install
  • npm start
  • Open http://localhost:8000/ex01, and show log in the terminal.

Installation

Using npm:

$ npm install --save @polydice/pasta-js

Then with a module bundler like webpack

// using ES6 modules
import {Pasta} from 'pasta-js'

// using CommonJS modules
var Pasta = require('pasta-js').pasta;

Or UMD build in dist/pasta-full.min.js in the installed folder.

Browser Support

It should use some polyfills expect for modern browsers, such as Chrome, Firefox, Microsoft Edge and Safari.

API

Initialization - Pasta(config)

  • config : Object(required)

core parameters

  • endpoint: String(required).
  • maxBuff: Number(option), default: 10. It is the limit for the buffer to send.
  • username: Any(option), default: null.
  var tracking = new Pasta({
    endpoint: '',
  });

push(data)

  • data: Object(required), any tracked data.

After initialization, use push to candidated queue. It will send automatically if buffer is up to limit (default: 10).

  tracking.push({
    event: 'click-button',
    count: 4
  });

send()

Send data to host by manually.

  tracking.send();

Tracked information

Every time a track is called, the following information is sent:

  • page_path
  • page_title
  • page_url
  • referrer
  • time
  • user_agent
  • username
  • viewport

They can disable or overwrite at initialization. But time can not disable or overwrite.

  var tracking = new Pasta({
    endpoint: '',
    customInfo: {
      viewport: false, // disable to send
      page_title() { return 'test title'; } // overwrite the data
    }
  });

It can set other information to send every time.

  var tracking = new Pasta({
    endpoint: '',
    customInfo: {
      customKey() { return 'custom value'; }
    }
  });

License

Check license here.

pasta-js's People

Contributors

ichi1234567 avatar frozenfung avatar achinchen avatar

Watchers

Richard Lee avatar Andreas (KKday) avatar  avatar fOx avatar James Cloos avatar Amelie avatar Polydice's Bot avatar  avatar  avatar Paul Chou avatar Kyle, Chuang avatar Sh Lin avatar Wells avatar KuanYu Chu avatar Stan Lo avatar Yusheng Li avatar Rex Hsu avatar Dalai avatar chenyou avatar Hexter Weng avatar Nicholas avatar Steven avatar Karen Hsieh avatar Wendy Yuchen Sun avatar Sheng-Han (Aysh) Su avatar yinghua 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.