gardr-unique-token-extdeprecated

Replaces the string GARDR_UNIQUE_ID with timestamp + position id to get unique URLs

Usage no npm install needed!

<script type="module">
  import gardrUniqueTokenExt from 'https://cdn.skypack.dev/gardr-unique-token-ext';
</script>

README

Garðr Unique Token Plugin

Replaces the string GARDR_UNIQUE_ID with timestamp + position id to get unique URLs

If you have multiple banners with the same position name, you might want to generate the banner URL once for all the positions. When the URL is the same it might load from the browser cache even when setting correct no-cache headers. By using the token GARDR_UNIQUE_ID in the url and this plugin, the token will be replaced with a timestamp and the id of the banner (which is different for each with the same name).

Install

npm install gardr-unique-token-ext --save

Use

In you ext bundle file:

var gardrExt = require('gardr-ext');
var uniqueToken = require('gardr-unique-token-ext');

gardrExt.plugin(uniqueToken);

module.exports = gardrExt;