2.0.1 • Published 3 years ago
nuxt-goptimize v2.0.1
Note: Google Optimize is used for reporting (only).
Table of contents
Main features
- Run multiple experiments simultaneously
- TypeScript support
- Cookies to persist variants across users
- Event handlers
gaordataLayer - Force a specific variant via url or param. E.g.
url?gopt_experiment-x=1orthis.$abtest('experiment-x', true, 1); - Avoid activating the a/b test anywhere. E.g.
this.$abtest('experiment-x', false); - Disable all a/b tests by cookie (
gopt_disabled=1), which can be useful for E2E tests in CI/CD pipelines
Dependencies
You can choose one of the following options which injects Google Analytics into your application:
- analytics.js
- @nuxtjs/google-analytics
- 3rd-party such as Segment
Setup
Google Optimize
- Create a new experiment:
Name: Experiment X
Type of experience: A/B test- Add variants names:
Original: this.$abtest('my_experiment') = 0
Variant A: this.$abtest('my_experiment') = 1
Variant B: this.$abtest('my_experiment') = 2- Define a page targeting:
WHEN URL equals SERVER_SIDE
- Define experiment's objectives.
Nuxt.js Module
- Add
nuxt-goptimizedependency to your project:
npm install nuxt-goptimize- Add
nuxt-goptimizemodule and configuration tonuxt.config.js:
export default {
// ...other config options
modules: ["nuxt-goptimize"];
googleOptimize: {
experiments: '~/experiments.js', // optional
}
}- Create the
experiments.jsin project's root with an array of your experiments. An example:
/**
* {
* name: string; A name to identify the experiment on this.$abtest('NAME_HERE')
* id: string; Experiment ID of Google Optimize
* maxAgeDays: number; Number of days to persist the cookie of user's active variant
* variants: number[]; An array of variants weights
* }
*/
module.exports = [
{
name: "experiment-x",
id: "IUhKJR2MSTiPMVGAwJDFBL",
maxAgeDays: 15,
variants: [50, 50],
},
];- (Optional) TypeScript support. Add
nuxt-goptimizeto thetypessection oftsconfig.json:
{
"compilerOptions": {
"types": ["nuxt-goptimize"]
}
}Options
experiments
- Type:
String - Default:
~/experiments.js
File path for your experiments definition.
eventHandler
- Type:
String - Default:
ga - Values:
ga,dataLayer
Event handler to let Google know about variants in-use.
Usage
It can be used inside components like:
{
data: () => ({
payBtnLabel: null as string | null,
isScenarioA: true,
}),
mounted() {
// Scenario: Determine an experiment variant and then display a label depending on it.
const expA = this.$abtest('experiment-a');
if (expA === 0) {
this.payBtnLabel = 'Place order';
} else {
this.payBtnLabel = 'Pay now!';
}
// Scenario: We want to force a specific variant programmatically.
const expB = this.$abtest('experiment-b', true, 1);
console.log('expB is always 1');
// Scenario: We have steps and we want to avoid activating the a/b test in any step
// (meaning.. avoid assigning a variant and reporting it).
const expC = this.$abtest('experiment-c', false)
console.log('expC is always 0');
}
}Credits
- Brandon Mills for
weightedRandom()
License
See the LICENSE file for license rights and limitations (MIT).
2.0.1
3 years ago
1.1.9
3 years ago
1.1.8
3 years ago
1.1.7
3 years ago
2.0.0
3 years ago
1.1.6
4 years ago
1.1.5
4 years ago
1.1.4
4 years ago
1.1.3
4 years ago
1.1.2
4 years ago
1.1.1
4 years ago
1.1.0
4 years ago
1.0.2
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago
1.0.0-alpha.3
5 years ago
1.0.0-alpha.2
5 years ago
1.0.0-alpha.1
5 years ago
1.0.0-alpha
5 years ago