GithubHelp home page GithubHelp logo

imgix-trackable's Introduction

imgix-trackable Build Status

Easily track the source and use of an image via its ixid param.

Rules

These URLs are encoded and decoded using a few rules:

  1. all parameters are lowercase and dasherized, i.e. unsplash, unsplash-source, unsplash-instant, etc.
  2. if a tracking parameter is not needed, it is replaced with an empty string. i.e. if given { app: 'my-app', page: null, label: 'dog', property: '1' }, the decoded tracking would be: my-app;;dog;1;
  3. an app value must always be given

Install

$ npm install imgix-trackable

API

track(url, [options])

Add or override the tracking parameters on an imgix URL.

const imgixTrackable = require('imgix-trackable');

imgixTrackable.track('https://images.unsplash.com/photo-123', {
  app: 'my-app',
  page: 'search',
  label: 'dog',
  property: '1'
});
//=> 'https://images.unsplash.com/photo-123?ixid={base64EncodedOptions}'

url

Type: string

The base URL. If an ixid parameter already exists, it will be overrided by whatever options you supply to imgixTrackable.

options

app

Type: string
Default: null

The app name to track. (optional)

page

Type: string
Default: null

The type of page the image is used on. (optional)

label

Type: string
Default: null

A more specific identifier for the page. (optional)

property

Type: string
Default: null

userId

Type: string
Default: null

The user ID.

decode(url)

Take an imgix URL that may have tracking on it, and return the tracking parameters. This is the inverse operation of track.

const imgixTrackable = require('imgix-trackable');

imgixTrackable.decode('https://images.unsplash.com/photo-123?ixid=');
//=>
// {
//   url: 'https://images.unsplash.com/photo-123',
//   app: 'my-app',
//   page: 'search',
//   label: 'dog',
//   property: '1'
//  }

Returns a trackableObject, with the tracking properties split from the URL. Note: the url will still contain other properties, like the w, h, etc.

License

MIT ยฉ Unsplash

imgix-trackable's People

Contributors

lukechesser avatar oliverjash avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

isabella232

imgix-trackable's Issues

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.