Projects

UTM Purser

This is a library that allows you to save user data from first website visit to signup of to local storage.

Heavily inpired by UTM params saver and Purser. This is a combination based on those projects. During my time at Talend, we use this little library/tool quite heavily.

Usage

import UTMPurser from "utm-purser";
UTMPurser.init(); // this will init the purser
UTMPurser.get(); // this will return all params from localStorage
const addPurserValuesToMarketoForms = (form) => {
// Add UTMPurser values to form submissions
...
...
}