Evolv Asset Manager
Tool used for managing Evolv created variants.
Setup
Web
Drop the following snippet in the head of your webpage(s). Preferrably as high as possible.
Note: You can find your "environment_id" in the Evolv manager or by contacting support.
<head>
<!-- evolv asset manager -->
<script
src="https://media.evolv.ai/asset-manager/releases/latest/webloader.min.js"
data-evolv-environment="<environment_id>"
></script>
</head>
If you would like to only render css assets place data-evolv-js="false"
into the script tag. If you would like to only render js assets place data-evolv-css="false"
into the script tag.
This snippet handles the bulk of the work needed to run an experiment. It confirms or contaminates users and activates dormant variants when the current context matches the parameters of the experiment. The context is evaluated on things like page, demographics and more.
Once the snippet has loaded, firing an event can be done through the globally accessible client with:
evolv.client.emit('my-event');
The global object evolv
has other methods and properties that are now accessible within the context of your webpage. For a manually activated experiment you can access evolv.context
and change the current context to match the requirements of your experiment. For more info on the accessible client methods and their uses see: javascript-sdk
There are 3 patterns of use that we foresee.
-
First is the one described above (simplest implementation). Place the asset manager web loader snippet onto the page, and it will append the css or js assets to the page's
<head>
for you and will create a unique user and store the uid in local storage. -
The second is a small alteration of the first. Follow the same steps but pass in a uid using the
data-evolv-uid
parameter on the script tag. With this approach no ids or information is stored on the client.
<head>
<script
src="https://media.evolv.ai/asset-manager/releases/latest/webloader.min.js"
data-evolv-environment="<environment_id>"
data-evolv-uid="<uid>"
></script>
</head>
- Third is a server side rendering approach. The two options above automatically append the needed css and / or js assets on the page for you. In this approach the implementer would render these assets serverside. Placing them on the page along with the asset manager webloader. This approach reduces the round trip calls needed for variant rendering and leads to a faster implementation.
<head>
<link rel="stylesheet" type="text/css" href="https://participants.evolv.ai/v1/<environment_id>/<uid>/assets.css">
<script type="text/javascript" src="https://participants.evolv.ai/v1/<environment_id>/<uid>/assets.js"></script>
<script
src="https://media.evolv.ai/asset-manager/releases/latest/webloader.min.js"
data-evolv-environment="<environment_id>"
data-evolv-uid="<uid>"
data-evolv-css="false"
data-evolv-js="false"
></script>
</head>
Additional data parameters
An optional timeout parameter of 'data-evolv-timeout' can be passed in to contaminate participants where we try to render the javascript changes great this time in ms after domContentLoadedEventStart time.
Default is 60000ms
<head>
<script type="text/javascript" src="https://participants.evolv.ai/v1/<environment_id>/<uid>/assets.js"></script>
<script
src="https://media.evolv.ai/asset-manager/releases/latest/webloader.min.js"
data-evolv-environment="<environment_id>"
data-evolv-timeout="<timeout-length-in-ms>"
></script>
</head>
For more about Evolv and what we do, please visit here.